mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:18:47 +00:00
609. 工资
https://www.acwing.com/problem/content/submission/code_detail/6863153/
This commit is contained in:
parent
75f30d7c61
commit
702561f5fb
12
AcWing/609/609.cpp
Normal file
12
AcWing/609/609.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
int a, b;
|
||||
double c;
|
||||
cin >> a >> b >> c;
|
||||
cout << "NUMBER = " << a << endl;
|
||||
cout << "SALARY = U$ " << fixed << setprecision(2) << b * c << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user