Answer:
Step-by-step explanation:
// The solution is solved using c++
#include <iostream>
using namespace std;
int main ()
{
float meal;
cout << "Please enter the price of the meal: ";
cin >> meal;
cout << "The Tip for the meal is " << 0.15*meal;
cout << " The tip for the meal " << 0.15* meal << ".\\";
return 0;
}