返回列表 發帖

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     int a, b;
  5.     float result;
  6.     cin>>a>>b;
  7.     result=sqrt(a+b);
  8.     cout << "結果=" << fixed << setprecision(2) <<result<< endl;
  9.         return 0;
  10. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     int a, b, c, d;
  5.     float result1,result2,final;
  6.     cin>>a>>b>>c>>d;
  7.     result1=(a-c)*(a-c);
  8.     result2=(b-d)*(b-d);
  9.     final=sqrt(result1+result2);
  10.     cout << "結果=" << fixed << setprecision(2) <<final<< endl;
  11.         return 0;
  12. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     int a, b, c, d, e, f;
  5.     cout<<"輸入:";   
  6.     cin>>a>>b>>c>>d>>e>>f;
  7.     printf("%10d %10d %10d %10d %10d %10d", a, b, c, d, e, f);
  8.     //cout << "結果=" << fixed << setprecision(2) <<final<< endl;
  9.         return 0;
  10. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     float a, half, area;
  5.     cout<<"輸入直徑:";   
  6.     cin>>a;
  7.     half=a/2;
  8.     area=half*half*3.1415;
  9.     cout << a << endl;
  10.     cout << fixed << setprecision(2) << half << endl;
  11.     cout << fixed << setprecision(4) << area << endl;
  12.         return 0;
  13. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     float a, b, c, ans;
  5.     cin>>a>>b>>c;
  6.     if(60 <= a and a < 100){
  7.         cout<<1<<endl;
  8.     }else{
  9.         cout<<0<<endl;
  10.     }
  11.     ans=(b+1)/10;
  12.     cout << fixed << setprecision(2) << ans << endl;
  13.     if(a>=c){
  14.         cout<<a<<endl;
  15.     }else{
  16.    
  17.         cout<<c<<endl;
  18.     }
  19.         return 0;
  20. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     int a;
  5.     cin>>a;
  6.     if(a%2==0){
  7.         cout<<"even";
  8.     }else{
  9.         cout<<"odd";
  10.     }

  11.         return 0;
  12. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     int a;
  5.     cin>>a;
  6.     if(60<a and a<100){
  7.         cout<<a+10;
  8.     }else if(a<60){
  9.         cout<<a+5;
  10.     }else{
  11.         cout<<"error";
  12.     }

  13.         return 0;
  14. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     int a;
  5.     cin>>a;
  6.     switch(a){
  7.     case 1:
  8.         cout<<"one";
  9.         break;
  10.     case 2:
  11.         cout<<"two";
  12.         break;
  13.     case 3:
  14.         cout<<"three";
  15.         break;
  16.     case 4:
  17.         cout<<"four";
  18.         break;
  19.     default:
  20.         cout<<"error";     
  21.     }
  22.         return 0;
  23. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main(int argc, char** argv) {
  4.     int a;
  5.     cin>>a;
  6.     if(60<a and a<100){
  7.         cout<<"pass"<<endl;
  8.     }else if(a<60){
  9.         cout<<"fail"<<endl;
  10.     }else{
  11.         cout<<"error"<<endl;
  12.     }
  13.     if(a%2==0){
  14.         cout<<"even";
  15.     }else{
  16.         cout<<"odd";
  17.     }
  18.         return 0;
  19. }
複製代碼

TOP

返回列表