返回列表 發帖

2023/05/25 作業

本帖最後由 陳育霖 於 2023-5-25 22:11 編輯

作業:
1. 完成自我介紹後,並在下方回復代碼
2. Typing Club 完成1~15(記錄在練習簿上,正確率需100%)
3. 複習第一支程式的內容(為下次考試內容)

  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=160.1, w=51.2;
  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=15;
  8.     float h=161,w=53;
  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 = 13;
  8.     float h = 160.5 , w = 40.5;
  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

返回列表