im stuck here😞
/*write a program to print the number of day, amount taken for the day, and the amount remaining at the end of the day. The output should terminated when 30 days have been printed or the amount remaining is less than 100 litters, whichever come first. For example, if W is 1000 and P is 10, The output should startas follows; Day Amount Taken Amount Remaining 1 100 900 2 90 810 3 81 729 */ #include <iostream> #include <iomanip> using namespace std; int main() { int liter = 1000; int amountTaken = 100; int amountRemaining = liter - amountTaken ; int = 5 int Day[i]; cout << "Please enter the number of liter : "; cin >> liter; cout << "\n"; cout << fixed; cout << setprecision (2); cout << left << setw(15) << "Day; cout << right << setw(15) amountRemaing cout<<"\n" return 0; }