<經典吟唱>這道題目是洛谷順序結構題單中的一題,題面地址:P1421
這道題沒有什麼好說的地方,主要的思路是分別讀出整數部分和小數部份,再使用公式 (Total = a + 0.1 imes b) 計算組合後的總錢數,再使用總錢數除以1.9元,就能得到能買的鉛筆數量(Quantity)了。
代碼如下(使用C語言編寫,果然我還是不會C++……):
#include <stdio.h>
#include <math.h>
int main() {
int a,b;
scanf("%d%d", &a, &b);
double total = a + (b * 0.1);
int quantity = (int)(total / 1.9);
printf("%d", quantity);
return 0;
}