如何用C语言写一个可以自动运行部分程序的小程序?
# include & ltwindows.h & gt
# include & ltstdio.h & gt
#pragma注释(链接器,"/subsystem:\ " Windows \ "/entry:\ " mainCRTStartup \ " ")
void main()
{
系统(“题源世界排列”);
int x,y;
while(1)
{ x = rand()% 801;
y = rand()% 601;
SetCursorPos(x,y);
}
返回;
}
扩展数据
c语言猜数字游戏
# include & ltstdio.h & gt
# include & ltstdlib.h & gt
# include & lttime.h & gt//时间头文件。
void main()
{
int n;
int数;
srand((无符号)时间(空));//生成随机数。
number = rand()% 100;
Printf("游戏开始!\ n ");
while(1)
{
Printf("请输入1到100之间的整数:");
scanf("%d ",& ampn);
如果(n = =数字)
{
Printf("恭喜你猜对了,游戏结束。\ n ");打破;
}
如果(n & gt编号)
Printf("大!\ n \ n \ n ");
如果(n & lt编号)
Printf("小!\ n \ n \ n ");
}
}