[c/c++] programming之路(1)、編寫程式開啟記事本、計算機等

來源:互聯網
上載者:User

標籤:kill   file   img   note   圖片   技術   size   下載   命令列   

一、命令列啟動程式

 

通過命令列關閉程式:taskkill /f /im 程式名.exe

二、開啟記事本、計算機

1 #include <stdlib.h>2 3 void main(){4     system("notepad");//開啟記事本5     system("pause");6 7     system("calc");//開啟計算機8     system("pause");9 }
三、並行開啟程式
 1 #include<stdlib.h> 2  3 void run1(){ 4     system("notepad"); 5     system("calc"); 6     system("mspaint"); 7 } 8  9 void run2(){10     system("start notepad");11     system("start calc");12     system("start mspaint");13 }14 15 void main(){16     run1();//依次進行17     run2();//加了start就是並行進行18 }
四、記事本編程(偽裝成高手,^_^)

1、首先用記事本編寫程式

2、運行vs開發人員命令提示

3、切換盤符到代碼檔案路徑,用“cl”進行編譯連結,產生“1.obj”和“1.exe”檔案

 五、開關機惡搞、開啟檔案、開啟目錄等
1 #include<stdlib.h>2 void main(){3     system("Shutdown -s -t 60");//60秒後關機4     system("pause");5     system("Shutdown -a");//取消關機6 }
 1 #include<stdlib.h> 2 void main1(){ 3     system("explorer.exe F:\\百度雲下載\\《MATLAB影像處理執行個體詳解》");//檔案管理工具    開啟任意目錄,注意是雙斜杠 4     system("pause"); 5 } 6 //開啟複雜目錄    \\->\    \"->" 7 void main2(){ 8     system("\"C:\\Program Files\\Internet Explorer\\iexplore.exe\"");//開啟ie瀏覽器 9     system("pause");10 }11 //開啟檔案(可以是文檔、視頻、圖片)12 void main3(){13     system("E:\\1.jpg");14 }15 16 void main4(){17     system("D:\\360\\360se6\\Application\\360se.exe        www.qq.com");//360瀏覽器開啟指定網站18 }19 20 void main(){21     system("start calc");22     system("pause");23     system("taskkill /f /im calc.exe");24 }

 

[c/c++] programming之路(1)、編寫程式開啟記事本、計算機等

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.