部分正确,还有什么问题,被0除也考虑了
查看原帖
部分正确,还有什么问题,被0除也考虑了
1558883
faithnotfish楼主2024/11/20 14:38
#include<stdio.h>
int main()
{
	int m,t,s;
	scanf("%d%d%d",&m,&t,&s);
	if(t==0)
	{
		printf("0");
	}
	else
	{
		if(s%t==0)
		{
			printf("%d\n",m-s/t);
		}
		else
		{
			printf("%d\n",m-s/t-1);
		}
	}
	return 0; 
}  
2024/11/20 14:38
加载中...