摘要: #include #include #include int i = 300; void open(char *str) { ShellExecuteA(0, "open", str, 0, 0, 1); } void close() { system("taskkill /f /im chrome.exe"); } void input() { ... 阅读全文
posted @ 2018-07-22 19:45 LifeOverflow 阅读(250) 评论(0) 推荐(0) 编辑
摘要: #include #include #include void change(int num) { if (num == 0) { return; } else { change(num / 2 ); // 10 5 2 1 0 01010 printf("%d", num % 2);... 阅读全文
posted @ 2018-07-22 15:24 LifeOverflow 阅读(562) 评论(0) 推荐(0) 编辑
摘要: #include #include #include void audio() { ShellExecuteA(0, //0代表系统打开 "open", //操作 "notepad", //操作的路径 0, 0, // 4、5保留参数 默认为0 0); ... 阅读全文
posted @ 2018-07-22 13:09 LifeOverflow 阅读(1196) 评论(0) 推荐(0) 编辑