- #include<iostream> //引入輸入輸出函式庫
- #include<cstdlib> //C標準函式庫
- using namespace std; //指定命名空間為std
- //主程式
- int main(){
- //你要做的事
-
- //宣告兩個盒子
- float x; //x->長
- float y; //y->寬
-
- cout<<"請輸入矩形的長:";
- cin>>x;
- cout<<"請輸入矩形的寬:";
- cin>>y;
-
- cout<<"長為:"<<x<<"、寬為:"<<y<<"的矩形,面積為:"<<x*y<<",周長為:"<<(x+y)*2<<endl;
-
- system("pause"); //黑色畫面暫停
- return 0; //告知主程式完成
- }
複製代碼 |