为什么第三个点过不去呢?....
查看原帖
为什么第三个点过不去呢?....
316921
cy641634186楼主2020/4/29 12:50
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
int main()
{
    int m,t,s;
    int max(int a,int b);

    scanf("%d %d %d",&m,&t,&s);

    if(t==0)
    printf("%d",m);
    else
    printf("%d",max(0,(m-ceil(s/t))));
}

int max(int a,int b)
{
    if(a>b)
        return(a);
    else
        return(b);
}
2020/4/29 12:50
加载中...