C++語言新手 求教學?

2017-09-20 8:51 pm
剛開始自學C++
請問一下
我寫一段
int X;
cout << "請輸入X" <<endl;
cin >> X ;
然後我要如何讓使用者看到她所輸出的內容
例: 請輸入X
使用者輸入hello world
然後我要如何顯示 "你輸入的是 hello world"

回答 (2)

2017-09-22 12:49 am
✔ 最佳答案
比較好的寫法應該是:(因為所有的輸入/輸出都是有可能會因為外在原因而失敗的)

#include<iostream>
#include<string>
int main() {
for(string X;
std::cout << "請輸入X"
&& std::cin >> X
&& std::cout << "你輸入的是 " << X << std::endl;);
return 0;
}
2017-09-20 9:14 pm
#include <iostream>

int main()
{
std::string X;
std::cout << "請輸入X" << std::endl;
std::cin >> X ;
std::cout << "你輸入的是 " << X << std::endl;
return 0;
}


收錄日期: 2021-05-04 02:23:52
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20170920125156AAAwdDF

檢視 Wayback Machine 備份