From 702561f5fbb69df405f9373f6c48ff8a8270ee7d Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Tue, 3 Aug 2021 14:51:25 +0800 Subject: [PATCH] =?UTF-8?q?609.=20=E5=B7=A5=E8=B5=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.acwing.com/problem/content/submission/code_detail/6863153/ --- AcWing/609/609.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 AcWing/609/609.cpp diff --git a/AcWing/609/609.cpp b/AcWing/609/609.cpp new file mode 100644 index 00000000..4cab0b59 --- /dev/null +++ b/AcWing/609/609.cpp @@ -0,0 +1,12 @@ +#include + +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; +}