hdu1049

水题

但学到了一种向上取整的方法

a/b向上取整用(a+b-1)/b


#include <iostream>
#include <stdio.h>
using namespace std;

int main()
{
    //freopen("t.txt","r",stdin);
    int n,u,d;
    while(scanf("%d%d%d",&n,&u,&d)&&n)
    {
        int t=(n-u+u-d-1)/(u-d);
        printf("%d\n",t*2+1);
    }
    return 0;
}




你可能感兴趣的:(hdu1049)