工资(C++) 一心敲代码 2023-11-15 50 阅读1分钟 #include <cstdio> using namespace std; int main() { int a, b; double c; scanf("%d%d",&a,&b); scanf("%lf",&c); printf("NUMBER = %d\n",a); printf("SALARY = U$ %.2lf",b * c); return 0; }