#include using namespace std; int main() { int price; // 焼きイモ1個の値段. int num; // 焼きイモの個数. double tax; // 消費税. double total; // 合計額. tax = 0.05; // 消費税は5%. cout << "焼きイモ1個の値段を入力してください: "; cin >> price; cout << "焼きイモを何個買いますか? "; cin >> num; total = static_cast(price * num) * (1.0 + tax); cout << "買った焼きイモの合計額は消費税込みで " << static_cast(total) << " 円です。" << endl; return 0; }