题解列表

筛选

求总时间 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,N; float time=0,s=30; scanf("%d",&N);    for(i=1;i……

考试评级 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int s; scanf("%d",&s); if(s<0 || s>100) return 0;     if……

求阶梯水费 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<=15) y=2*x; else y=30+(x-1……

求平均工资 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,s[100],sum=0; scanf("%d",&a); for(i=0;i<a;i++) {……

[编程入门]电报加密 (C语言代码)

摘要:题目描述输入一行电报文字,将字母变成其下一字母(如’a’变成’b’……’z’变成’a’其它字符不变)。输入一行字符输出加密处理后的字符样例输入a b样例输出b c解题思路:注意事项:参考代码:#inc……