返回列表 發帖

面積計算 - 圓形

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int r;
  6.     cout<<"請輸入圓形的半徑(公分): ";
  7.     cin>>r;
  8.     cout<<"半徑為"<<r<<"公分的圓形, 其面積為"
  9.         <<r*r*3.14<<"平方公分"<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"請輸入圓形的半徑(公分): ";
  7.     cin>>x;
  8.     cout<<"半徑為 "<<x<<" 公分的圓,面積為"<<x*x*3.14<<"平方公分"<<endl;
  9.     system("pause");
  10.     return 0;
  11.    
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int r;
  6.     cout<<"請輸入圓形的半徑(公分): ";
  7.     cin>>r;
  8.     cout<<"半徑為"<<r<<"公分的圓形, 其面積為"<<r*r*3.14<<"平方公分"<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   cout<<"圓型面積計算機"<<endl;  
  6.   int r;
  7.   cout<<"請輸入圓半徑:"<<endl;
  8.   cin>>r ;
  9.   cout<<"當圓型半徑為:"<<r<<"圓面積為::"<<r*r*3.14
  10.   <<"圓周長為"<<2*r*3.14<<endl;
  11.   system("pause");
  12.   return 0;      
  13. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"請輸入圓形的半徑(公分): ";
  7.     cin>>x;
  8.     cout<<"半徑為"<<x<<"公分的圓形, 其面積為"<<x*x*3.14<<"平方公分"<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int r;

  6.     cout<<"請輸入圓形的半徑(公分): ";
  7.     cin>>r;
  8.     cout<<"半徑為"<<r<<"公分的圓形, 其面積為"
  9.     <<r*r*3.14<<"平方公分"<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.       float x;
  6.       cout<<"★★★★★★★★★★★" <<endl;
  7.       cout<<"★請輸入圓半徑(cm):";
  8.       cin>>x;
  9.       cout<<"★圓直徑為:"<<2*x<<endl;
  10.       cout<<"★圓周長為:"<<(2*x)*3.14<<endl;
  11.       cout<<"★圓面積為:"<<x*x*3.14<<endl;
  12.       cout<<"★★★★★★★★★★★" <<endl;
  13.       
  14.       
  15.       system("pause");
  16.       return 0;
  17.       
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int r;
  6.   cout<<"請輸入圓形的半徑(公分):"<<endl;
  7.   cin>>r;
  8.   cout<<"半徑為"<<r<<"公分的圓形,其面積為"<<r*r*3.14<<"平方公分"<<endl;

  9.    system("pause");
  10.    return 0;  
  11. }
複製代碼

TOP

返回列表