NOJ答案c++版_第1頁
NOJ答案c++版_第2頁
NOJ答案c++版_第3頁
NOJ答案c++版_第4頁
NOJ答案c++版_第5頁
已閱讀5頁,還剩3頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、計算A+B圓及圓球等的相關(guān)計算計算成績找最大數(shù)找幸運數(shù)計算A+B#include <iostream>using namespace std;int main()int A,B,c;cin>>A>>B;c=A+B;cout<<c<<endl;return 0;圓及圓球等的相關(guān)計算#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;/定義數(shù)學成績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; 找最大數(shù)#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;找幸運數(shù)#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;獎金發(fā)放#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;出租車費難點:不足一公里按一公里收費?!綾eil函數(shù)】法一【“%”取余的充分運用】 #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函數(shù)】#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. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論