返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int number=0;
  7.     string str= "";
  8.    
  9.     cin>>number;
  10.     cin>>str;
  11.     cout<<str;
  12.     cout<<number<<endl;
  13.    
  14.    
  15.    
  16.    
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

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

TOP

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

TOP

#include<iostream> // 引入標頭檔 Input & Output  用來做輸入和輸出使用
#include<cstdlib> // 引入標頭檔函式庫
using namespace std;//命名空間
int main()
{
   
    // 變數宣告
    int  number = 0;
    string  str = "";
    float flo =0;
   
    cin >> number;
    cin >> str;
    cout << "你輸入的數字是:" << number << endl;
    cout << "你輸入的文字是:" << str << endl;
    system("pause"); //按任意鍵結束程式
    return 0;

TOP

返回列表