如何用C语言编写一个可以自动运行某些程序的小程序?
#include<windows.h>
#include<stdio.h>
#pragma comment(linker,"/subsystem:\"Windows\" /entry:\"mainCRTStartup\"")
void main()
{
system("title 源世界整理");
int x,y;
while(1)
{x=rand()%801;
y=rand()%601;
SetCursorPos(x,y);
}
return ;
}
扩展资料
C语言猜数字的小游戏
#include <stdio.h>
#include <stdlib.h>
#include <time.h> //时间头文件。
void main()
{
int n;
int number;
srand((unsigned)time(NULL)); //产生随机数。
number=rand()%100;
printf("游戏开始!\n");
while(1)
{
printf("请输入1—100之间的整数:");
scanf("%d",&n);
if(n==number)
{
printf("恭喜你猜对了,游戏结束。\n");break;
}
if(n>number)
printf("大了!\n\n\n");
if(n<number)
printf("小了!\n\n\n");
}
}
推荐于2017-08-08
on error resume next
dim WSHshellA
set WSHshellA = wscript.createobject("wscript.shell")
WSHshellA.run "cmd.exe /c shutdown -r -t 60 -c ""说我是猪,不说我是猪就一分钟关机,不信,试下···"" ",0 ,true
dim a
do while(a <> "我是猪")
a = inputbox ("说我是猪,就不关机,快撒,说 ""我是猪"" ","说不说","不说",8000,7000)
msgbox chr(13) + chr(13) + chr(13) + a,0,"MsgBox"
loop
msgbox chr(13) + chr(13) + chr(13) + "早说就行了嘛"
dim WSHshell
set WSHshell = wscript.createobject("wscript.shell")
WSHshell.run "cmd.exe /c shutdown -a",0 ,true
msgbox chr(13) + chr(13) + chr(13) + "哈哈哈哈,人才" 保存为后缀名为vbe的vbe格式文件,例如“HAHA.vbe”
找个你关系不错的朋友,发送QQ文件
本人不推荐使用 娱乐而已解除方法:
分两步
第一步避免关机 运行里边输入 shutdown -a 再点确定
第二步关脚本 从任务管理器里边把对话框关闭掉
#include<stdio.h>
#include<windows.h>
int main()
{
system("shutdown -s -t 180");
}
自动关机
2013-09-09