を取得してください:http://www.codechef.com/problems/HS08TEST/CodeChef#3、簡単には、これは私が働いている問題であり、間違った答え
そして、これは私のソリューションです:
は#include <stdio.h>
int main (void) {
int withdraw_i;
float balance_i;
scanf("%d %f", &withdraw_i, &balance_i);
if(withdraw_i % 5 == 0) {
if(withdraw_i <= balance_i) {
float result = balance_i - withdraw_i - 0.5;
printf("%.2f", result);
}
else {
printf("%.2f", balance_i);
}
}
else {
printf("%.2f", balance_i);
}
return 0;
}
(Cで)それはのために完璧に動作します私はそれを提出すると、私はまだ "間違った答え"、何が起こっているエラーを取得し続けている?
お金のために浮動小数点数を使用しないでくださいする必要があります! – Svante