返回列表 發帖

自我介紹

試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

  4. int main()
  5. {
  6.     string name="謝以恩",school="大同國小" ;
  7.     int age=10;
  8.     float w=148.6,x=12;
  9.    
  10.     cout<<"我的大名:"<<name<<endl;
  11.     cout<<"我的學校:"<<school<<endl;
  12.     cout<<"我的年齡:"<<age<<"歲"<<endl;
  13.     cout<<"我的體重:"<<x<<"公斤"<<endl;
  14.     cout<<"我的身高:"<<w<<"公分"<<endl;
  15.     system("pause");
  16.     return 0;
  17.     }
複製代碼

TOP

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

  4. int main()
  5. {
  6.     string name="winny",school="南成國小";
  7.     int age=11;
  8.     float x=148.5,y=32.1;
  9.     cout<<" 我的大名:"<<name<<endl;
  10.     cout<<" 就讀:"<<school<<endl;
  11.     cout<<" 年齡:"<<age<<"歲"<<endl;
  12.     cout<<" 身高:"<<x<<"公分"<<endl;
  13.     cout<<" 體重:"<<y <<"公斤"<<endl;
  14.     system("pause");   
  15.     return 0;
  16. }
複製代碼

TOP

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

  4. int main()
  5. {
  6.     string name="林祐霆",school="大同國小";
  7.     int age=9;
  8.     float w=9.487,h=140;
  9.     cout<<"我的名字是"<<name<<endl;
  10.     cout<<"我的學校是"<<school<<endl;
  11.     cout<<"我的年齡是"<<age<<"歲"<<endl;
  12.     cout<<"我的體重(掰的)是"<<w<<"公斤"<<endl;
  13.     cout<<"身高是"<<h<<"公分"<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼
林祐霆

TOP

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

  4. int main()
  5. {
  6.     string name="謝以愛",school="陽明國小";
  7.     int age=12;
  8.     float h=166.3,w=42.9;
  9.     cout<<"我的大名:"<<name<<endl;
  10.     cout<<"就讀:"<<school<<endl;
  11.     cout<<"今年:"<<age<<"歲"<<endl;
  12.     cout<<"身高:"<<h<<"公分"<<endl;
  13.     cout<<"體重:"<<w<<"公斤"<<endl;
  14.     system("pause");   
  15.     return 0;
  16. }
複製代碼

TOP

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

  4. int main()
  5. {
  6.     string name="蘇韋誠",school="大同國小";
  7.     int age=9;
  8.     float x=155.5,y=29;
  9.     cout<<"我的大名:"<<name<<endl;
  10.     cout<<"我的學校:"<<school<<endl;
  11.     cout<<"我的年齡:"<<age<<"歲"<<endl;
  12.     cout<<"我的體重:"<<x<<"公斤"<<endl;
  13.     cout<<"我的身高:"<<y<<"身高"<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

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

  4. int main()
  5. {
  6.     string name="林祐霆",school="大同國小";
  7.     int age=9,cousin=4;
  8.     float w=9.487,h=140;
  9.     cout<<"我的名字是"<<name<<endl;
  10.     cout<<"學校是"<<school<<endl;
  11.     cout<<"我"<<age<<"歲"<<endl;
  12.     cout<<"體重(掰的)是"<<w<<"公斤"<<endl;
  13.     cout<<"身高是"<<h<<"公分"<<endl;
  14.     cout<<"我有"<<cousin<<"個表和堂兄弟姊妹"<<endl;
  15.     cout<<"很高興見到你!"<<endl;
  16.     return 0;
  17. }
複製代碼
林祐霆

TOP

#include<iostream>
#include<cstdlib>
using namespace std;

int main()
{
    string name="洪承廷,school=瑞興國小" ;
    int age=11;
    float w=145,x=35.5;
   
    cout<<"我的大名:"<<name<<endl;
    cout<<"我的學校:"<<school<<endl;
    cout<<"我的年齡:"<<age<<"歲"<<endl;
    cout<<"我的體重:"<<x<<"公斤"<<endl;
    cout<<"我的身高:"<<w<<"公分"<<endl;
    system("pause");
    return 0;

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="尤爾呈",school="瑞興國小";
  7.     int age=10;
  8.     float x=145,y=40;
  9.    
  10.     cout<<"我的大名:"<<name<<endl;
  11.     cout<<"就讀:"<<school<<endl;
  12.     cout<<"今年:"<<age<<"歲"<<endl;
  13.     cout<<"身高:"<<x<<"公分"<<endl;
  14.     cout<<"體重:"<<y<<"公斤"<<endl;                        

  15.     system("pause");
  16.     return 0;
  17. }   
  18.             
  19.    
  20.                         
複製代碼

TOP

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

  4. int main()
  5. {   
  6.     int x=9999,y=9858;
  7.     cout<<"當x等於"<<x<<"y等於"<<y<<"時"<<endl;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.    
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

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

  4. int main()
  5. {   
  6.     int x,y;
  7.     cout<<"請輸入x;"<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入y;"<<endl;
  10.     cin>>y;   
  11.    
  12.    
  13.     cout<<"當x等於"<<x<<"y等於"<<y<<"時"<<endl;
  14.     cout<<"x+y="<<x+y<<endl;
  15.     cout<<"x-y="<<x-y<<endl;
  16.     cout<<"x*y="<<x*y<<endl;
  17.     cout<<"x/y="<<x/y<<endl;
  18.     cout<<"x%y="<<x%y<<endl;
  19.    
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;

int main()
{
   string str;
   int r;
   cout<<"請輸入一任意英文字串:";
   getline(cin,str);
   cout<<"想讓電腦幫你抓出第幾個字母?"<<endl;
   cin>>r;
   cout<<"字串的第"<<r<<"個字母為:"<<str[r-1]<<endl;
   system("pause");
   return 0;
}

TOP

[img]#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;

int main()
{
   string str;
   int r;
   cout<<"請輸入一任意英文字串:";
   getline(cin,str);
   cout<<"想讓電腦幫你抓出第幾個字母?"<<endl;
   cin>>r;
   cout<<"字串的第"<<r<<"個字母為:"<<str[r-1]<<endl;
   system("pause");
   return 0;
}[/img]

TOP

#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;

int main()
{
   string str;
   int r;
   cout<<"請輸入一任意英文字串:";
   getline(cin,str);
   cout<<"想讓電腦幫你抓出第幾個字母?"<<endl;
   cin>>r;
   cout<<"字串的第"<<r<<"個字母為:"<<str[r-1]<<endl;
   system("pause");
   return 0;
}

TOP

??????????????????????????????

TOP

返回列表