返回列表 發帖

第一支程式

在螢幕上顯示 "快樂C++" 字樣
  1. #include<iostream>  //引入標頭檔 <基本輸入輸出> in & out stream
  2. #include<cstdlib>   //引入標頭檔 <基本函式庫> c standard library
  3. using namespace std;  //使用命名空間 std
  4. int main() //主函式
  5. {
  6.     cout<<"快樂C++"<<endl;
  7.     system("pause");  //暫停
  8.     return 0;         //回傳0到主控台告訴電腦,程式已成功執行
  9. }
複製代碼

  1. #include <iostream>              //引入標頭檔 <基本輸入輸出>
  2. #include <cstdlib>               //引入標頭檔 <基本函示庫>                                                                                                                             
  3. using namespace std;             //使用命名空間
  4. int main()                       //主函式
  5. {                          
  6.     cout<<"快樂c++"<<endl;
  7.     system("pause");
  8.      return 0;                    //暫停
  9. }system("pause");                 //回傳0到主控台告訴電腦,程式已成功執行  
  10.    
複製代碼

TOP

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

TOP

  1. #include<iostream>                           //標頭檔
  2. #include<cstdlib>                            //標頭檔
  3. using namespace std;                         //使用命名空間std
  4. int main()                                   //主函式
  5. {                                            //主函式開始
  6.     cout<<"Welcomt To Facebook"<<endl;       //輸入 Whelcome To Facebook 換行
  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<<"快樂c++"<<endl;
  7.      system("pause");     
  8.      return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>  //入標題檔引 <基本輸入輸出>
  2. #include<cstdlib>   //入標題檔引 <基本函式庫>
  3. using namespace std;        //使用命名空間
  4. int main() //主函式  P.S.;=結束
  5. {
  6.   cout<<"I am a teacher"<<endl;
  7.   system("pause");
  8.   return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>    // 引入標頭檔  <基本輸入輸出>
  2. #include<stdlib>    //已入標頭檔 < 基本涵式庫>
  3. using namespace std;    // 使用命名空間 std
  4. int main()    //主涵式
  5. {
  6.     cout<<"快樂c++"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

  1. #include<iostream>  //
  2. #include<cstblib>   //
  3. using namespace std;  //
  4. int main() //主函式   //
  5. {   //
  6.       cout<<"475454556";   //  
  7.       system("pause");     //
  8.       return 0;             //
  9. }
複製代碼

TOP

  1. #include<iostream>  //引入標頭檔 <基本輸入輸出> in & out stream
  2. #include<cstdlib>   //引入標頭檔 <基本函式庫> c standard library
  3. using namespace std;  //使用命名空間 std
  4. int main() //主函式
  5. {
  6.         string name="蔡季樺",school="福東國小";
  7.         int age=11;
  8.         float height=150.2,weight=40.3;
  9.         cout<<"我的大名:"<<name<<endl;
  10.         cout<<"就讀:"<<school<<endl;
  11.         cout<<"今年"<<age<<"歲"<<endl;
  12.     cout<<"身高"<<height<<"公分"<<endl;
  13.     cout<<"體重"<<weight<<"公斤"<<endl;
  14.     system("pause");  //暫停
  15.     return 0;         //回傳0到主控台告訴電腦,程式已成功執行
  16. }
複製代碼

TOP

  1. #include<iostream>  //引入標頭檔 <基本輸入輸出> in & out stream
  2. #include<cstdlib>   //引入標頭檔 <基本函式庫> c standard library
  3. using namespace std;  //使用命名空間 std
  4. int main() //主函式
  5. {
  6.        
  7.         int x=1,y=1;
  8.         cout<<"當y的值為"<<y<<",x的值為"<<x<<"時"<<endl;
  9.         cout<<"y+x"<<x+y<<endl;

  10.     system("pause");  //暫停
  11.     return 0;         //回傳0到主控台告訴電腦,程式已成功執行
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main();

  5.    
  6. int x=1,y=1;
  7.        cout<<"當y的值為"<<y<<",x的值為"<<x<<"時"<<endl;
  8.        cout<<"y+x"<<x+y<<endl;

  9.     system("pause");   
  10.     return 0
複製代碼

TOP

返回列表