#include <stdio.h>
#include <stdlib.h>
int main()
{
int people=5;
int capacity=4;
int x=0;//x設定商數 人數/容量 , 商數=0就不用exe
int y=0;
x=people / capacity;
printf("%d\n",x);
y=people % capacity;//y設定商數 人數 mod 容量
printf("%d\n",y);
if(x !=0 && y !=0)//商數要不等於0且 mod不可以等於0,才exe,
{
x ++;
printf("%d",x);
}
return 0;
}
沒有留言:
張貼留言