Решал задачи и у меня возникла проблема при решении вот этой:
Условие задачиTakahashi loves takoyaki - a ball-shaped snack. With a takoyaki machine, he can make at most X pieces of takoyaki at a time, taking T minutes regardless of the number of pieces to make. How long does it take to make N takoyaki?
Решил ее так:
#include <iostream>
using namespace std;
int main()
{
int x,n,t;
double t2;
cin » n » x » t;
t2 = (double)(n*t)/x;
t = (n*t)/x;
if(t < t2) {
cout « t+1 « endl;
} else {
cout « t « endl;
};
return 0;
}
1≤N,X,T≤1000
All values in input are integers.
В каких случаях будет неверный ответ?