本帖最後由 陳品諺 於 2023-6-25 23:48 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a, b;
- cout<<"請輸入兩個數字,分別為梯形的上底及高(公分): ";
- cin>>a>>b;
- cout<<"面積為: "<<(a+a+(b-1)*2)*b/2<<endl;
- cout<<endl<<endl;
- for(int i=0;i<b;i++)
- {
- for(int j=i;j<b;j++)
- {
- cout<<" ";
- }
- for(int j=i;j<a+i+i*2;j++)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |