新手天翼
大家不是想要 c++ 的代码吗?
这里有
#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;
}
初级天翼
酷町问答十大法则第一:不要洪浪滔天、百川入海、惊涛骇浪、倾盆雨下、暴雨如注、水积成川、水天一色。碧波荡漾、水趣盎然、波光潋滟、清澈见底、悠悠烟水、碧波浩渺、溪流淙淙、白浪滔天、波涛澎湃、狂风怒潮、黑风巨浪
许金夫在2020-06-12 19:30:12追加了内容
好吧,这一个是误伤的,确实不怎么水
初级启示者
搜洛谷呗,还要稍微改进
董宇昊在2020-06-08 19:36:20追加了内容
<marquee><font size=+3 color=red>侯平仄大佬</font></marquee>
::: hljs-center
<marquee><font size=+3 color=red>
最帅</font></marquee>
:::
你试一试
新手天翼
<marquee><font size=+6 color=red>王子逸大佬</font></marquee>
::: hljs-center
<marquee><font size=+0100 color=red>
最帅</font></marquee>
<marquee><font size=+0100 color=red>
代表作:</font></marquee>
<marquee><font size=+0100 color=red>
行走小游戏</font></marquee>
高级天翼
<marquee><font size=+6 color=red>李瑞曦小弱鸡</font></marquee>
::: hljs-center
<marquee><font size=+5 color=red>
想要被采纳</font></marquee>
<marquee><font size=+4 color=red>
想要豆豆</font></marquee>
李瑞曦在2020-06-08 21:07:37追加了内容
我也不知道你们怎么写的,我照着你的代码写出来了
高级天翼
<marquee><font size=+3 color=red>潘晨皓是帅哥</font></marquee>
这个更叼……
在dev-c++上试一试会变成什么样?
我在IDE上试了一试(dev-c++上不好截图)
”main.cpp:2:20: fatal error: windows.h: No such file or directory
#include<windows.h>
^
compilation terminated.“
报错
但如果真能在dev-c++上实现,那游戏就有意思了