- #include<iostream> //引入標頭檔 <基本輸入輸出> in & out stream
- #include<cstdlib> //引入標頭檔 <基本函式庫> c standard library
- using namespace std; //使用命名空間 std
- int main() //主函式
- {
- string name="蔡季樺",school="福東國小";
- int age=11;
- float height=150.2,weight=40.3;
- cout<<"我的大名:"<<name<<endl;
- cout<<"就讀:"<<school<<endl;
- cout<<"今年"<<age<<"歲"<<endl;
- cout<<"身高"<<height<<"公分"<<endl;
- cout<<"體重"<<weight<<"公斤"<<endl;
- system("pause"); //暫停
- return 0; //回傳0到主控台告訴電腦,程式已成功執行
- }
複製代碼 |