Board logo

標題: 變數宣告 [打印本頁]

作者: 周政輝    時間: 2017-8-1 14:07     標題: 變數宣告

練習宣告 int ,string 型別的變數
並利用 cout 輸出
作者: 周政輝    時間: 2017-8-1 14:07

  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. }
複製代碼

作者: 蔣皓宸    時間: 2017-8-1 14:14

  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. }
複製代碼

作者: 楊詠竣    時間: 2017-8-1 14:16

  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. }
複製代碼

作者: 蘇昱全    時間: 2017-8-1 14:16

[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;
}
作者: 楊詠翔    時間: 2017-8-1 14:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      string str="hello";
  7.      int number=87;
  8.      cout<<str<<endl;     
  9.      cout<<number<<endl;
  10.      system("pause");
  11.      return 0;
  12. }
複製代碼
回復 1# 周政輝
作者: 林孟霆    時間: 2017-8-1 14:16

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

作者: 尤靖評    時間: 2017-8-1 14:18

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

作者: 鄭稟燁    時間: 2017-8-1 14:18

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

作者: 尤靖瑗    時間: 2017-8-1 14:22

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      cout<<"尤靖瑗"<<endl;
  7.    
  8.      int namber = 100;
  9.      cout<<namber<<endl;
  10.       system("pause");
  11.      return 0;
  12.          
  13. }
複製代碼

作者: 石庭禎    時間: 2017-8-1 14:24

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    //變數宣告                        
     int number=10;
     cout << number << endl;                                         
   
   
    system("pause");
    return 0;   
}
作者: 郭宗翰    時間: 2017-8-1 14:24

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

作者: 陳智鈞    時間: 2017-8-1 14:24

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

作者: 蔡佾辰    時間: 2017-8-1 14:25

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

作者: 黃宇綸    時間: 2017-8-1 14:26

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number =66;
   
   cout<<number<<endl;
   system("pause");
   return 0;  

}
作者: 林廷融    時間: 2017-8-1 14:27

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"555555"<<endl;
int number = 10;
cout<<number<<endl;



system("pause");
return 0;      
         
         
}
作者: 黃宇瑄    時間: 2017-8-1 14:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int number =26;
  7.      string str="all";
  8.      cout<<number<<endl;   
  9.      cout<<str<<endl;
  10.    
  11.    
  12.   
  13.       
  14.      system("pause");
  15.      return 0;   
複製代碼
回復 1# 周政輝
作者: 林廷融    時間: 2017-8-1 14:48

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. cout<<"555555"<<endl;
  7. int number = 10;
  8. cin>>number;
  9. cout<<number<<endl;
  10. cout<<"你輸入的文字是:"<<number<<endl;


  11. system("pause");
  12. return 0;      
  13.          
  14.          
  15. }
複製代碼

作者: 湯東緯    時間: 2017-8-1 14:58

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int number=0;
  7. string str="";
  8. cout<<number<<endl;
  9. cin>>number;
  10. cin>>str;

  11. cout<<str<<endl;
  12. system("pause");
  13. return 0;   
  14. }
複製代碼

作者: 郭采納    時間: 2017-8-1 14:58

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

作者: 胡綵玲    時間: 2017-8-1 14:59

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
  int number=0;
  string str="";
  float flo=0;
  cin>>number;
  cout<<number<<endl;

  cout<<str<<endl;
  system("pause");
  return 0;
作者: 尤靖瑗    時間: 2017-8-1 14:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      cout<<"尤靖瑗"<<endl;
  7.    
  8.      int number = 0;
  9.      string str = "";
  10.      cin >> number;
  11.      cout<<"你輸入的數字是"<<number<<endl;
  12.       system("pause");
  13.      return 0;
  14.          
  15. }
複製代碼

作者: 郭宗翰    時間: 2017-8-1 14:59

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

作者: 林廷融    時間: 2017-8-1 15:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. cout<<"555555"<<endl;
  7. int number = 10;
  8. cin>>number;
  9. cout<<number<<endl;
  10. cout<<"你輸入的文字是:"<<number<<endl;


  11. system("pause");
  12. return 0;      
  13.          
  14.          
  15. }
複製代碼





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