在Win_TC里运行 #include<stdioh>
#include<stdlibh>
#include<graphicsh>
char a[100]="zhangyafei";
char b[100];
char str[100]="";
int p=1;
int i;
void main()
{
int gdriver=DETECT, gmode;
initgraph(&gdriver, &gmode, " ");
randomize();
do
{
while(!kbhit())
{
i++;
if(i==300)
{
i=0;
cleardevice();
} setcolor(rand()%16);
circle(rand()%600,rand()%450,rand()%50);
setcolor(rand()%16);
moveto(rand()%getmaxx(),rand()%getmaxy());
lineto(rand()%getmaxx(),rand()%getmaxy());
/
setbkcolor(rand()%16);
sleep(1);
/ setcolor(rand()%16);
arc(rand()%getmaxx(),rand()%getmaxy(),rand()%getmaxx(),rand()%360,rand()%360); }
cleardevice();
setcolor(6);
settextstyle(0,0,3);
outtextxy(80,getmaxy()/2,"Please Input Password!");
scanf("%s",&b);
cleardevice();
if(strcmp(a,b))
{
p=1;
outtextxy(100,getmaxy()/2,"Password is Wrong!");
sleep(1);
}
else
{
p=0;
outtextxy(100,getmaxy()/2,"Password is Correct");
sleep(1);
}
}
while(p);
closegraph();
return 0;
}
桌面空白处 右键 选择 个性化选择 屏幕保护程序 ,进行编辑既可以了
应该是32位的系统吧、、、32位的没有这个功能、、、我的也是、、、打开计算机属性看看、、、可以下个win7优化大师玩玩、、
以上就是关于c语言程序设计---屏保程序全部的内容,包括:c语言程序设计---屏保程序、win7 用的雪花屏保 能设置到个性化-屏保 的 !能设置的 win7的!软件直接上传、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)