NOJ答案c++版_第1页
NOJ答案c++版_第2页
NOJ答案c++版_第3页
NOJ答案c++版_第4页
NOJ答案c++版_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、计算A+B圆及圆球等的相关计算计算成绩找最大数找幸运数计算A+B#include <iostream>using namespace std;int main()int A,B,c;cin>>A>>B;c=A+B;cout<<c<<endl;return 0;圆及圆球等的相关计算#include <iostream>#include <iomanip>using namespace std;#define PI 3.1416int main()double r,h,l,s,sq,vq,vz;cin>>

2、;r>>h;l=2*PI*r;s=PI*r*r;sq=4*PI*r*r;vq=4*PI*r*r*r/3;vz=s*h;cout<<fixed<<setprecision(2)<<l<<endl;cout<<fixed<<setprecision(2)<<s<<endl;cout<<fixed<<setprecision(2)<<sq<<endl;cout<<fixed<<setprecision(2)<<

3、vq<<endl;cout<<fixed<<setprecision(2)<<vz<<endl;return 0;计算成绩#include <iostream>#include <iomanip>using namespace std;int main()double a,b,c,A,B;/定义数学成绩a,英语成绩b,c语言成绩ccin>>a>>b>>c;A=a+b+c;B=A/3.0;cout<<fixed<<setprecision(6)<&

4、lt;A<<endl;cout<<fixed<<setprecision(6)<<B<<endl;return 0; 找最大数#include <iostream>using namespace std;int main()int A,B,C;cin>>A>>B>>C;if(A>B && A>C) cout<<A<<endl;elseif(B>A && B>C) cout<<B<<en

5、dl;else cout<<C<<endl; return 0;找幸运数#include <iostream>using namespace std;int main()int m,n,a,b,c,d,e,f;cin>>m;a=m%10;b=m/10%10;c=m/100%10;d=m/1000%10;e=m/10000%10;if(e=0) if(d=0) if(c=0)if(b=0) if(a=0) n=0;else n=a;else n=a*10+b;else n=a*100+b*10+c;else n=a*1000+b*100+c*10+

6、d;else n=a*10000+b*1000+c*100+d*10+e;if(m=n) cout<<"yes"<<endl;else cout<<"no"<<endl;return 0;奖金发放#include <iostream>#include <iomanip>using namespace std;int main()double w,y;cin>>w;if(w<=10) y=0.1*w;else if(w<=20) y=(w-10)*0.075+1

7、;else if(w<=40) y=(w-20)*0.05+1.75;else if(w<=60) y=(w-40)*0.03+2.75;else if(w<=100) y=(w-60)*0.015+3.35;else y=(w-60)*0.01+3.95;cout<<fixed<<setprecision(6)<<y<<endl;return 0;出租车费难点:不足一公里按一公里收费。【ceil函数】法一【“%”取余的充分运用】 #include <iostream>#include <iomanip>

8、using namespace std;int main()double s,y;int a,b,c;cin>>s;c=s; a=s*10;b=a%10;if(s<=2) y=7;else if(s<=15) if(b=0) y=7+1.5*(s-2);else y=7+1.5*(c-1);else if(b=0) y=26.5+2.1*(s-15);else y=26.5+2.1*(c-14);cout<<fixed<<setprecision(6)<<y<<endl;return 0;法二【ceil函数】#include <iostream>#include <cmath>#include <iomanip>using namespace std;int main()double s,y;int a;cin>>s;a=ceil(s);if(s<=

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论