だから、私はCプログラムを読んでいます。本と私はこの演習を読みました:
Write a program which asks the user to enter a dollars-and-cents amount, then displays the amount with 5% added?
解決 :
#include <stdio.h>
int main(void) {
float original_amount;
printf("Enter an amount: ");
scanf("%f", &original_amount);
printf("With tax added: $%.2f\n", original_amount * 1.05f);
return 0;
}
意味はわかり.3f
ますが (後ろに 3 桁あるはずです...)、でもどういう1.05f
意味ですか?