This commit is contained in:
flykhan 2023-03-23 23:37:15 +08:00
parent 14a2c954ef
commit da036a3a93
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#include <cstdio>
using namespace std;
int main()
{
int a, b;
double c;
scanf("%d%d%lf", &a, &b, &c);
printf("NUMBER = %d\nSALARY = U$ %.2lf", a, b * c);
return 0;
}