/*
win環境下
system("")
函式的作用就是把字串輸入進
cmd裡
例如system("echo for example")就和
std::cout << "for,example";
的作用相同。
至於有多少個選項可以試試system("help") 這將會輸出所有
cmd命令*/
#include
"stdafx.h"
#include
int _tmain(int argc, _tchar* argv)
beep(900,1000);//系統鳴鈴,第乙個引數是頻率,第二個引數是鳴鈴時間長短
sleep(1000);
//messagebox(0,0,0,0);
//******不過
system(
「name
」在release情況下卻提示沒有定義
//system("start");//調出
cmd命令視窗
//system("calc");//調出系統計算器
//system("mspaint");//調出系統畫圖軟體
//system("control");//調出系統控制面板
//system("notepad");//調出系統記事本
//system("services.msc");//調出服務面板
//system("soundrecorder");
//system("narrator");
system("echo for example");//輸出
for example
return 0;
開啟乙個對話方塊
#include
"stdafx.h"
#include
#include
using
namespace std;
int _tmain(int argc, _tchar* argv)
cout << "hellow c++"
<< endl;
//彈出乙個對話方塊函式,第乙個引數為副視窗一般寫
null
,第二個引數是訊息的內容,第三個引數是標題,第四個引數是按鈕(常量)
messagebox(null, text("hellow c++"), text("標題
"), mb_ok);
system("pause");
return 0;
執行如下
部分函式功能的實現
1 strcpy的實現 其中包含src字串結尾處的 0 實現 include 模擬實現strcpy include void my strcpy char dest,const char src 函式不需要返回 dest 0 拷貝上最後的 0 因為strcpy有將src裡的 0 拷貝到dest裡的功...
python time部分功能
import time time.time 返回當前時間的時間戳 1970元年後的浮點數 time.localtime 接收時間戳,並返回當地時間下的元組t time.strftime 把乙個代表時間的元組或者struct time轉化為格式化的時間字串。t time.time 輸出結果為 1557...
git的部分功能
1.要git clone 遠端倉庫位址 2.在資料夾中clone的倉庫會有乙個新的資料夾,然後點進去新的資料夾,右鍵git開啟,就可以使用git add git commit m 提交的備註 等相關命令提交到本地倉庫了 等今天寫完 並且git add和git commit提交到本地倉庫之後 然後要g...