返回列表 發帖

[作業] 面積計算 (三) - 矩形

本帖最後由 方浩葦 於 2024-6-1 09:26 編輯

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

int main(){
    int x,y;

    cout<<"請輸入矩形的長(公分)";
    cin>>x;
    cout<<"請輸入矩形的寬(公分)";
    cin>>y;

    cout<<"長"<<x<<"cm"<<"寬"<<y<<"cm"<<""<<"的矩形周長="<<x*2+y*2<<",面積="<<x*y<<"平方公分"<<endl;

    system ("pause");
    return 0;
}

TOP

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int x,y;
    cout<<"請輸入長方形的長:";
    cin>>x;
    cout<<"請輸入長方形的寬:";
    cin>>y;
    cout<<"長"<<x<<"公分,寬"<<y<<"公分的長方形,周長是"<<x*2+y*2<<"公分,"<<"面積是"<<x*y<<"平方公分"<<endl;
    system("pause");
    return 0;
}

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int x,y;
cout<<"請輸入矩形的長(公分)";
cin>>x;
cout<<"請輸入矩形的寬(公分)";
cin>>y;
cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周長為"<<(x+y)*2<<"公分,面積為"<<x*y<<"平方公分"<<endl;
system("pause");
return 0;


}

TOP

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

  4. int main(){

  5.     int x, y;
  6.     cout<<"請輸入矩形的長(公分):";
  7.     cin>>x;
  8.     cout<<"請輸入矩形的寬(公分):";
  9.     cin>>y;
  10.     cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周長為"<<x*2+y*2<<"公分,"<<"面積為"<<x*y<<"平方公分."<<endl;
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

TOP

本帖最後由 李偈睿 於 2024-6-8 16:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入方方型的長"<<endl;
  8.     cin>>x;
  9.     cout<<"請輸入方方型的寬"<<endl;
  10.     cin>>y;
  11.     cout<<"長"<<x<<"公分,寬"<<y<<"公分的長方形,周長是"<<x*2+y*2<<"公分,面積是"<<x*y<<"平方公分"<"endl;
  12.                                                                  
  13.         }
  14.         cout<<endl;
  15.         goto re;                               
  16.         system("pause");
  17.         return 0;                                            
  18. }
複製代碼

TOP

返回列表