0
0
已采纳
王子逸
新手天翼
新手天翼
酷町问答可以显示部分 首页显示不了
王子逸在2020-06-12 18:20:24追加了内容
别问我头像怎么了 我就是追日漫有点过头而已......
王子逸在2020-06-12 18:41:08追加了内容
//#include <StdAfx.h>
#include <stdio.h>
#include <time.h>
#include <conio.h>
#include <string.h>
#include<Windows.h>
#define TIME_INTERVAL (CLOCKS_PER_SEC / 50)
int main(int argc, char* argv[])
{
system("color 04");
int i, j;
long c;
char str[80] = "Hello world!";
int l = strlen(str);
char sleft[80];
char sright[80];
int scrwidth = 79;
while (1)
{
for (i = 0; i <= scrwidth; i++)
{
if (i <= scrwidth - l)
{
c = clock();
for (j = 0; j < i; j++)
{
printf(" ");
}
printf("%s ", str);
while (clock() - c <= TIME_INTERVAL)
;
system("cls");
}
else
{
c = clock();
strcpy(sleft, str);
strcpy(sright, str + l - (i - (scrwidth - l)));
*(sleft + l - (i - (scrwidth - l))) = NULL;
for (j = 0; j < i; j++)
{
printf(" ");
}
printf("%s ", sleft);
printf("%s ", sright);
while (clock() - c <= TIME_INTERVAL)
;
system("cls");
}
}
}
return 0;
}
字母滚动c++代码 拿去用吧
2
许金夫
初级天翼
初级天翼
酷町问答十大法则第一:不要洪浪滔天、百川入海、惊涛骇浪、倾盆雨下、暴雨如注、水积成川、水天一色。碧波荡漾、水趣盎然、波光潋滟、清澈见底、悠悠烟水、碧波浩渺、溪流淙淙、白浪滔天、波涛澎湃、狂风怒潮、黑风巨浪
0
0
0
0
0
0