最近在给小朋友补奥数课,顺便看了几道题目,觉得写出来会比较集中,整理一下哈哈哈。

问题如下:

苹果和虫子:

你买了一箱n个苹果,很不幸的是买完时箱`子混进了一只虫子,虫子每x小时可以吃掉一个苹果,假设虫子在吃完一个苹果之前不会去吃另一个,那么经过y小时你还有多少个完整的好苹果?

样例输入:10  4  9(表示一箱10个苹果,4小时吃一个,9小时后还有几个是完整的?)

样例输出:7

代码实现:其中需要注意是向上取整,默认是向下取整的。

代码如下:

#include 
#include 

using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
    double x,y,n;
    cin>>x>>y>>n;
    cout< <ceil(y/x)<<endl;
    cout<<floor(y/x)<<endl;
    cout<<n-ceil(y/x);
    return 0;
}

原文来自:http://www.cnblogs.com/wongyi/p/8205305.html

本文地址:https://www.linuxprobe.com/apple-insect.html编辑:郝大发,审核员:逄增宝

本文原创地址:https://www.linuxprobe.com/apple-insect.html编辑:public,审核员:暂无