返回列表 發帖

我的第一支程式

本帖最後由 tonyh 於 2017-7-4 11:34 編輯



本帖隱藏的內容需要回復才可以瀏覽

  1. #include<iostream>  // input & output stream
  2. #include<cstdlib>   // c standard library
  3. using namespace std; //指定命名空間為 std
  4. int main()
  5. {
  6.      cout<<"大家好!"<<endl;
  7.      system("pause");  //暫停
  8.      return 0;  //回傳 0 到主控台  
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"Hi"<<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<<"阿囉哈,:D"<<endl;
  7.     system("pause");
  8.     return 0;   
  9.    
  10. }
複製代碼

TOP

  1. #include<iostream>  // input & output stream
  2. #include<cstdlib>   // c standard library
  3. using namespace std; //指定命名空間為 std
  4. int main()
  5. {
  6.      cout<<"大家好!"<<endl;
  7.      system("pause");  //暫停
  8.      return 0;  //回傳 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;
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.    cout<<"hello"<<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<<"hello"<<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<<"My name is Abbie"<<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<<"ooxx..."<< endl;
  7.     system("pause");
  8.     return 0;   
  9. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x=23,y=7;
  7.    cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  8.    cout<<"x+y="<<x+y<<endl;
  9.    cout<<"x-y="<<x-y<<endl;
  10.    cout<<"x*y="<<x*y<<endl;
  11.    cout<<"x/y="<<x/y<<endl;
  12.    cout<<"x%y="<<x%y<<endl;   
  13.    system("pause");
  14.    return 0;
  15. }
複製代碼

TOP

返回列表