摘要: #include #include void openQQ(){ ShellExecute(0, "open", "\"D:\\Program Files (x86)\\Tencent\\QQ\\Bin\\QQScLauncher.exe\"", 0, 0, 1);}void diguiMov... 阅读全文
posted @ 2015-12-30 20:19 喵小喵~ 阅读(203) 评论(0) 推荐(0) 编辑
摘要: #include #include //打开程序或网页void open(char *str){ ShellExecuteA(0, "open", str, 0, 0, 1);}//关闭程序void close(){ system("http://taskkill /f /im lieb... 阅读全文
posted @ 2015-12-30 18:13 喵小喵~ 阅读(853) 评论(0) 推荐(0) 编辑
摘要: #define _CRT_SECURE_NO_WARNINGS#include #include void main(){ char str[100] = { 0 }; //scanf("%s", str);//空格当做结束 //scanf("%[^\n]", str);//处理空... 阅读全文
posted @ 2015-12-30 10:37 喵小喵~ 阅读(427) 评论(0) 推荐(0) 编辑