C++第二章簡單程序設計2.1.3

2.1.3簡單程序設計實例 #include using namespace std; int main(){ int a; cout<<「請輸入一個數字」<<endl; cin>>a; cout<<a<<endl; cout<<a<<「Hello,C++」<<endl; return 0; } 這是一段最基礎簡單的C++程序,它運行後的效果是這樣: ##1.頭文件 編寫C++程序之前需要先插入頭
相關文章
相關標籤/搜索