noip第二彈 輸入輸出

2021-08-31 11:33:57 字數 1083 閱讀 3139

scanf是一種較為快速的輸入語句,但是對於cout較為難寫

#include

using

namespace std;

intmain()

cin雖然非常容易寫,但是它較為慢。不過在noip中卡輸入輸出的題目實在少。所以大多數c++選手的習慣就是寫cin和cout。

#include

using

namespace std;

intmain()

printf是較為快速的輸出語句

#include

using

namespace std;

intmain()

;printf (

"%s"

,d);

long

long

int e=

15411231651

;printf

("%lld"

,e);

//都不需要"&"

return0;

}

#include

using

namespace std;

intmain()

;cout<

long

long

int e=

1513210120151

;cout<

return0;

}//

**:

//printf

#include

using

namespace std;

intmain()

return0;

}

//cout

#include

using

namespace std;

intmain()

return0;

}

速度(1000000次)(十幾年前的電腦):

scanf:

輸入輸出函式(二)

詳解getchar 函式 功能 1.接收乙個字元 2.可以用於清理緩衝區 3.使螢幕暫停 清理緩衝區的程式 while ch getchar eof ch n 為什麼要清理緩衝區呢?當我們輸入一行字串時,輸完會點回車進入下一行,回車會被寫入字串的結尾,往往,我們的字串中是不需要回車符的,所以需要清理...

第二章,迴圈結構,輸入輸出,clock

計時 計時函式 clock 返回目前為止執行的時間 注意要除以常數 clocks per sec,才能得到以秒為單位。標頭檔案time.h 管道 在windows命令列下執行echo 20 abc,作業系統會自動把20輸入,其中abc為程式名。輸入輸出框架 scanf 空格 tab和回車都是無關緊要...

C 的輸入輸出(二)

用流成員函式put輸出字元 ostream除了提供之前提到的那些函式來輸出外,還提供了專門輸出單個字元的函式put。例如 cout.put a 結果為在螢幕上顯示乙個字元a。put函式的引數可以是字元,可以是assic碼,也可以是表示式。例如 cout.put 97 cout.put 32 65 兩...