#27353: 解答 ( 含註解 )


los2516lir@gmail.com (八代洛克)

學校 : 不指定學校
編號 : 70315
來源 : [61.64.0.185]
最後登入時間 :
2022-01-09 20:55:57
a001. 哈囉 -- Brian Kernighan | From: [61.64.0.185] | 發表日期 : 2021-09-26 16:46

/*

學習所有程式語言的第一個練習題 

請寫一個程式,可以讀入指定的字串,並且輸出指定的字串。

 

比如:輸入字串 "world", 則請輸出 "hello, world"

*/

 

#include<iostream> //引入 iostream.h 之標頭檔

using namespace std; // 引入 iostream.h 標頭檔之 std 命名空間

 

int main(void){ //執行程式

    string word; //建立名為 word 的字串變數,不設初始值

    while( cin >> word ){ //將鍵盤輸入的值賦值到 word 字串,之後執行迴圈

        cout <<  "hello, " << word; //將"hello, "字串和 word 之值串聯輸出至螢幕

    }

}

 
#27357: Re:解答 ( 含註解 )


los2516lir@gmail.com (八代洛克)

學校 : 不指定學校
編號 : 70315
來源 : [61.64.0.185]
最後登入時間 :
2022-01-09 20:55:57
a001. 哈囉 -- Brian Kernighan | From: [61.64.0.185] | 發表日期 : 2021-09-27 09:00

這裡能請求刪除嗎?

我沒注意到不能po答案,是我的錯

我很抱歉

 
ZeroJudge Forum