华师一附中OI组

标题: 青蛙一步可以跳30厘米,x厘米的距离他要跳几步 [打印本页]

作者: admin    时间: 2018-7-4 17:19
标题: 青蛙一步可以跳30厘米,x厘米的距离他要跳几步
比如输出90 输出3  输入100 输出4
作者: WJL    时间: 2018-7-5 13:51
  1. #include<iostream>
  2. #include<cmath>
  3. using namespace std;
  4. int x,a;
  5. int main()
  6. {
  7.     cin>>x;
  8.     a=ceil((float(x)/30));
  9.     cout<<a;
  10.     return 0;
  11. }
复制代码

作者: JASONZHU    时间: 2018-7-6 22:30
题6.
  1. #include<iostream>
  2. using namespace std;
  3. int x,y;
  4. int main()
  5. {
  6.     cin>>x;
  7.     y=(x-1)/30+1;
  8.     cout<<y;
  9.     return 0;
  10. }


复制代码

作者: 郑子川    时间: 2018-7-12 11:41
  1. #include <iostream>
  2. int x,y;
  3. using namespace std;

  4. int main()
  5. {
  6.     cin>>x;
  7.     y=(x+29)/30;
  8.     cout<<y;
  9.     return 0;
  10. }
复制代码

作者: 高歌岭    时间: 2018-7-27 17:43
  1. #include<iostream>
  2. using namespace std;
  3. int x,y;
  4. int main()
  5. {
  6.     cin>>x;
  7.     y=(x-1)/30+1;
  8.     cout<<y;
  9.     return 0;
  10. }
复制代码

作者: Bryan    时间: 2019-4-7 17:29
#include <iostream>
using namespace std;
int x,y;
int main()
{
    cin>>x;
    y=x+4;
    y=y/5;
    cout<<y;
    return 0;
}





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2