题解列表

筛选

薪水计算 (C语言代码)

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