作业比赛编号 : 1638 - 【C21112】瓢虫2班

期中考试
#include<bits/stdc++.h>
using namespace std;
int main() {
int m,n,h;//m:白天爬的高度,n晚上下滑的高度,h井的高度 
cin>>m>>n>>h;
int x_h=0;//x_h小青蛙爬的高度 
int cnt=0;//cnt模拟天数 
while(x_h<h){//模拟小青蛙爬井 
cnt++;//一天过去
x_h+=m;//模拟青蛙白天爬的高度
if(x_h>=h) break;//如果小青蛙爬到井上,跳出循环 
x_h-=n;
}
cout<<cnt;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main() {
double x;//x是小明想要游泳的距离 
cin>>x;
double juli=2;//开始时,小明换一次气可以游多少
double xm_juli=0;
int cnt=0;//cnt表示换多少次气; 
while(xm_juli<x){//xm_juli表示小明游的距离,还没有游x 
cnt++;//呼吸一次 
xm_juli+=juli;//小明游的距离 
juli*=0.98; //下一次游泳多少距离 
}
cout<<cnt;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cin>>n;//出游的人数
int x=0,y=0;//x表示33座的数量,y表示49的数量
x=n/33;
if(n%33<=16&&n%33!=0){
x--;//少租一辆33座车 
y++;//多租一辆49座车 
}else if(n%33>16){
x++;//再多租一辆33座车 
}
if(n<=33) cout<<1900;//辆33座的钱数 
else cout<<x*1900+y*3300;//x辆33座的钱数和Y辆49座的钱数 
return 0;
}


比赛尚未开始或私有,不能查看题目。




返回上一页