URI ONLINE JUDGE SOLUTION - 1008 Salary
Problem:
Solution:
#include<stdio.h>
int main()
{
int a,b;
double c,s;
scanf("%d%d%lf",&a,&b,&c);
s=b*c;
printf("NUMBER = %d\nSALARY = U$ %0.2lf\n",a,s);
return 0;
}
Write a program that reads an employee's number,
his/her worked hours number in a month and the amount he received per
hour. Print the employee's number and salary that he/she will receive at
end of the month, with two decimal places.
- Don’t forget to print the line's end after the result, otherwise you will receive “Presentation Error”.
- Don’t forget the space before and after the equal signal and after the U$.
Input
The input file contains 2 integer numbers and 1
value of floating point, representing the number, worked hours amount
and the amount the employee receives per worked hour.
Output
Print the number and the employee's salary,
according to the given example, with a blank space before and after the
equal signal.
Solution:
#include<stdio.h>
int main()
{
int a,b;
double c,s;
scanf("%d%d%lf",&a,&b,&c);
s=b*c;
printf("NUMBER = %d\nSALARY = U$ %0.2lf\n",a,s);
return 0;
}
Comments
Post a Comment