Solution | URI Online Judge | 1008 Salary

URI Online Judge | 1008

Salary

Adapted by Neilor Tonin, URI  Brazil
Timelimit: 1
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.
Input SamplesOutput Samples
25
100
5.50
NUMBER = 25
SALARY = U$ 550.00
1
200
20.50
NUMBER = 1
SALARY = U$ 4100.00
6
145
15.55
NUMBER = 6
SALARY = U$ 2254.75

সল্যুশন্সঃ 
#include<iostream>
#include<iomanip>
using namespace std;
main()
{
    int x, y;
    float z;
    cin >> x;
    cin >> y;
    cin >> z;
    cout << fixed;

    cout << "NUMBER = " << x << endl;
    cout << "SALARY = U$ " << setprecision(2) << (y*z) << endl;

    return 0;

}

আলোচনাঃ 
কোনো টপিক না বুঝলে অবশ্যই কমেন্টস করবেন। কোড কপি পেষ্ট না করে আগে বুঝুন দেন নিজে নিজে করুন। কোডিং এর মজা টা বুঝবেন।

Comments

Popular posts from this blog

Solution - Codeforces Problem 327B - Hungry Sequence

Solution - Timus Problem 1293. Eniya

Solution - Timus Problem 1409. Two Gangsters