iT邦幫忙

0

D25. 學習基礎C、C++語言

c++
  • 分享至 

  • xImage
  •  

D25. 輸入輸出

在C語言裡,如果要輸入是scanf("%d",&a),輸出是printf("%d",a)
而在C++裡面則是cin cout 來表示

#include <iostream>
using namespace std;
int main() {
	int a;
	cin>>a;
	a=a+3;
    cout << a << endl;
    return 0;
}

其中endl的意思是end-of-line,也就是換行\n,要特別注意的是<< >>的方向,<< 是 output operator, 把右邊的資料,傳送給其左邊的cout

試一下換行的用法

#include <iostream>
using namespace std;
int main() {
	int a=3;
    cout << a << " ";
    cout << a+3 << " ";
    cout <<"next line" <<endl;
	cout << a+5<<endl;    
    return 0;
}

輸出內容
https://ithelp.ithome.com.tw/upload/images/20220102/201436275hHu0K0LfL.jpg
(而在cout 到endl 之間的空格除非有用雙引號隔出的才會顯示)


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言