Mình đang theo khóa này của anh Đạt trên Youtube và cũng tự solve các challenge luôn.
Mình sẽ post lời giải của mình ở đây,ai có cách làm ngắn gọn hơn thì góp ý với nhé
Bài MealCost
#include <cmath>
#include <cstdio>
#include <iostream>
#include <vector>
#include <iostream>
#include <algorithm>
#include <iomanip>
using namespace std;
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
double mealCost;
int tipPercent;
int taxPercent;
cin >> mealCost;
cin >> tipPercent;
cin >> taxPercent;
double totalCost = mealCost + (mealCost * tipPercent/100) + (mealCost * taxPercent/100);
int payment = mealCost + (mealCost * tipPercent/100) + (mealCost * taxPercent/100);
double soDu = totalCost - payment;
if (soDu >= 0.5){
payment += 1;
cout << "The total meal cost is "<< payment << " dollars." << endl;
}
else{
cout << "The total meal cost is "<< payment << " dollars." << endl;
}
return 0;
}