Board logo

標題: 基本輸入輸出 [打印本頁]

作者: tonyh    時間: 2015-8-11 14:30     標題: 基本輸入輸出

cin 輸入
cout 輸出
作者: tonyh    時間: 2015-8-11 14:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入x的值: ";
  8.     cin>>x;
  9.     cout<<"請輸入y的值: ";
  10.     cin>>y;
  11.     cout<<"x="<<x<<endl;
  12.     cout<<"y="<<y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 林禹彤    時間: 2015-8-11 14:46

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入x的值:";
  8.     cin>>x;
  9.     cout<<"請輸入y:";
  10.     cin>>y;
  11.    
  12.     cout<<"x="<<x<<endl;
  13.     cout<<"y="<<y<<endl;
  14.         
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 陳品蓁    時間: 2015-8-11 14:46

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int h,i;
  7.    
  8.     cout<<"請輸入h:";
  9.     cin>>h;
  10.     cout<<"請輸入i:";
  11.     cin>>i;
  12.    
  13.     cout<<"h="<<h<<endl;
  14.     cout<<"i="<<i<<endl;
  15.    
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 張文擇    時間: 2015-8-11 14:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()

  5. {
  6.      int a;
  7.      int b;
  8.      
  9.      cout<<"請輸入 a :";
  10.      cin>>a;
  11.      cout<<"請輸入 b:";
  12.      cin>>b;
  13.      
  14.       cout<<"a=" <<a<<endl;   
  15.       cout<<"b=" <<b<<endl;
  16.       
  17.       system("pause");
  18.       return 0;   

  19. }     
複製代碼

作者: 柳晟緯    時間: 2015-8-11 14:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5.     {
  6.     int a;
  7.     int b;

  8.     cout<<"請輸入 a:";
  9.     cin>>a;
  10.     cout<<"請輸入 b:";
  11.     cin>>b;
  12.    
  13.     cout<<"a="<<a<<endl;
  14.     cout<<"b="<<b<<endl;
  15.      
  16.      system("pause");
  17.      return 0;
  18.      }
複製代碼

作者: 顏宇呈    時間: 2015-8-11 14:55

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int a;
  7.      int b;
  8.      
  9.      cout<<"請輸入a:";
  10.      cin>> a;
  11.      cout<<"請輸入b:";
  12.      cin>> b;
  13.    
  14.      cout<<"a="<<a<<endl;   
  15.      cout<<"b="<<b<<endl;
  16.    
  17.      
  18.    
  19.    
  20.    
  21.    
  22.    
  23.    
  24.    
  25.    
  26.    
  27.    
  28.    
  29.    
  30.    
  31.    
  32.    system("pause");
  33.     return 0;
  34. }
複製代碼

作者: 鍾帛融    時間: 2015-8-11 14:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       int a;   
  7.       int b;

  8.         cout<<"a: ";   
  9.         cin>>a;
  10.         cout<<"b: ";
  11.         cin>>b;
  12.         cout<<"a="<<a<<endl;
  13.         cout<<"b="<<b<<endl;
  14.         
  15.        system("pause");
  16.        return 0;
  17. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2