Advertisement
MOHD_NASIR_UDDIN42

1008-Salary-URI Online Judge

Apr 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a,b;
  5.     scanf("%d %d",&a, &b);
  6.     printf("NUMBER = %d\n",a);
  7.     float c,sum;
  8.     scanf("%f",&c);
  9.     sum=b * c;
  10.     printf("SALARY = U$ %.02f\n",sum);
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement