write a program to enter the monthly salary of an employee calculate and display his annual salary
Answers
Answered by
3
Answer:
#include <iostream>
using namespace std;
int main()
{
int sal;
cout<<"Enter monthly salary ";
cin>>sal;
cout<<"Annual salary is "<<sal*12;
return 0;
}
Explanation:
Hope it helps :-)
Mark it brainliest
Similar questions