返回列表 發帖

我的第一支程式

本帖最後由 歐柏罕 於 2017-10-28 16:39 編輯
  1. #include<iostream>  //輸入輸出
  2. #include<cstdlib>   //函式庫
  3. using namespace std;  //命名
  4. int main()
  5. {
  6.     cout << "大家好" << endl;
  7.     //cout 輸出 <<
  8.     //cin  輸入 >>
  9.     //字串要用雙引號包起來(")
  10.     // endl換行
  11.     // ;代表結束
  12.     system("pause"); //暫停                  
  13.     return 0;        //結束了
  14. }
複製代碼

為什麼其他的沒有倒立的情形?
因為3田4田5田6田,其中兩個都有相鄰,所以1田2田才會是倒著的。

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   cout<<"大家好!"<<endl;
  7.   system("pause");
  8.   return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   cout<<"大家好!"<<endl;   
  7.   system("pause");
  8.   return 0;
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   cout<<"大家好!"<<endl;        
  7.   system("pause");
  8.   return 0;         
  9. }
複製代碼
May

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   cout<<"大家好"<<endl;
  7.   system("pause");
  8.   return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"大家好"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"大家好 "<<endl;
  7. system("pause");
  8. return 0;
  9. }         
複製代碼

TOP

本帖最後由 顏詢 於 2017-10-28 16:54 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"大家好"<<endl;
  7.    system("pause");
  8.    return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"大家好"<<endl;
  7.    system("pause");
  8.    return 0;
  9. }
複製代碼
回復 1# 歐柏罕

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"大家好"<<endl;
  7.     system("pause") ;
  8.     return 0;
  9. }
複製代碼

TOP

返回列表