题解 1658: 蓝桥杯算法训练VIP-薪水计算

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

薪水计算 (C语言代码)

摘要:#include<stdio.h>int main(){    int n;    float a,m;    scanf("%d %f",&n,&m);    if(n<40)    a=n*m; ……