有一定难度
#include<iostream> using namespace std; int main() { int x,t; double y; cin>>x>>t>>y; printf("NUMBER = %d\nSALARY = U$ %.2lf\n",x,t*y); return 0; }