關於C C 的各種常見讀取資料操作

2021-08-28 02:46:01 字數 516 閱讀 2111

例1:

題目描述

將乙個字串str的內容顛倒過來,並輸出。str的長度不超過100個字元。

輸入輸入包括一行。 第一行輸入的字串。

輸出輸出轉換好的逆序字串。

樣例輸入

i am a student

樣例輸出 

tneduts a ma i

//用scanf讀取一行帶空格字串

#include#includeint main()

return 0;

}/*若使用algorithm標頭檔案,可以變得更簡單

#include #include int main()

return 0;

}/*若使用algorithm標頭檔案,可以變得更簡單

#include #include #include using namespace std;

int main()

*/

關於C C 的各種優化

一.常量 宣告常量可以方便 的修改,提高復用性.const int maxn 10000 const int n 10000 10 const double exp 1e 6 同時,宣告常量也可以減少重複運算,提高 速度,例子如下 string s cin s for int i 0 i s i a...

讀取資料的各種函式

乙個小透明發現。自己寫的 很多是因為輸入的問題導致的錯誤。來理一理其中的問題。cin是istream類的物件 cin可以連續從鍵盤讀取想要的資料,以空格 tab或換行作為分隔符。當cin 從緩衝區中讀取資料時,若緩衝區中第乙個字元是空格 tab或換行這些分隔符時,cin 會將其忽略並清除,繼續讀取下...

關於時間的各種操作

日期字串格式大小比較 string str1 2015 02 08 string str2 2015 01 08 int res str1.compareto str2 1是大於 0是等於 1是小於獲取某年第一天日期 calendar calendar calendar.getinstance ca...