返回列表 發帖
[quote]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    //int number=10;
    string str ="hello";
    cout<<str;
   // cout<<"hello"<<endl;
    //cout<<"coc"<<endl;
    system("pause");
    return 0;
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int number =10 ;
  7.     string str = "windows 10 系統錯誤";
  8.     cout<<number<<endl;
  9.     system("pause");
  10.     return 0;        
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int number=123;
  7.     string str="hello";
  8.     cout<<str<<endl;
  9.     cout<<number<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<iostream> // 引入標頭檔 Input & Output  用來做輸入和輸出使用
  2. #include<cstdlib> // 引入標頭檔函式庫
  3. using namespace std;//命名空間
  4. int main() //
  5. {
  6.    
  7.     // 變數宣告
  8.     int  number = 10;
  9.     string str = "hello";
  10.     cout << number << endl;
  11.    cout << str << endl;
  12.     system("pause"); //按任意鍵結束程式
  13.     return 0; // 告知我們的程式說 程式已經正常執行並結束 \
  14.    
  15.     // 單行註解
  16.     /* 多行註解*/
  17. }
複製代碼

TOP

返回列表