返回列表 發帖

變數宣告

練習宣告 int ,string 型別的變數
並利用 cout 輸出

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

TOP

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

TOP

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

TOP

[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;
}

TOP

  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# 周政輝

TOP

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

TOP

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

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.    
  8.      int namber = 100;
  9.      cout<<namber<<endl;
  10.       system("pause");
  11.      return 0;
  12.          
  13. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    //變數宣告                        
     int number=10;
     cout << number << endl;                                         
   
   
    system("pause");
    return 0;   
}

TOP

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

TOP

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

TOP

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

TOP

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

}

TOP

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



system("pause");
return 0;      
         
         
}

TOP

  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# 周政輝

TOP

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

TOP

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

TOP

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

TOP

返回列表