這篇文章主要介紹了c++中的換行符怎么用的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇c++中的換行符怎么用文章都會有所收獲,下面我們一起來看看吧。
晉源ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書合作)期待與您的合作!c++換行符有哪些
\n 換行,光標(biāo)移到下一行的開頭;
endl,把緩沖槽的內(nèi)容輸出到控制臺;
\r 回車,光標(biāo)移到當(dāng)前行的開頭,不會換到下一行,如果接著輸出的話,本行以前的內(nèi)容會被逐一覆蓋;
#include <iostream> using namespace std; int main() { cout << "this is the first line\n"; cout << "this is the second line\r"; cout << "this is the third line\n"; cout << "this is the fouth line\r"; cout << "this is the fifth line\n"; cout<<"First"<<"\n"<<"Second"<<endl; cout<<"First123"<<"\r"<<"Second"<<endl; cout<<"這是換"<<endl<<"行符"; return 0; }
結(jié)果:
this is the first line this is the third linee this is the fifth line First Second Second23 這是換 行符 Presss any key to continue
內(nèi)容補充:
關(guān)于遇到的問題實例:
遇到\r獲取\n的時候,替換為\0.
#include<string.h> #include<stdio.h> int main(int argc, char *argv[]) { char str[128]; while (fgets(str, 127, stdin)) { char *tmp = NULL; //去掉換行符 if (tmp = strstr(str, "\n")) *tmp = '\0'; //去掉回車符 if (tmp = strstr(str, "\r")) *tmp = '\0'; printf("---%s---\n", str); } return 0; }
關(guān)于“c++中的換行符怎么用”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“c++中的換行符怎么用”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)頁題目:c++中的換行符怎么用-創(chuàng)新互聯(lián)
標(biāo)題來源:http://www.rwnh.cn/article42/cchpec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、電子商務(wù)、微信小程序、外貿(mào)網(wǎng)站建設(shè)、營銷型網(wǎng)站建設(shè)、網(wǎng)站營銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容