Computer Science, asked by Aaron150, 1 year ago

write a program to enter the monthly salary of an employee calculate and display his annual salary ​

Answers

Answered by sswaraj04
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