题解列表

筛选

统计成绩!

摘要:#include <stdio.h>int unpass=0;int main(){   float average(float a[]);    float a[10],aver;  int i; ……

c代码记录之电报加密

摘要:解题思路:怀疑编译器有问题,题目要求输入一行字符,按这个要求写的代码不能过,奇怪注意事项:参考代码:通过的代码,但这个代码第二行的内容也是会输出的,与题目要求不符#includeint main() ……

自定义函数写法

摘要:解题思路:自定义函数解法。注意事项:1不是完数。参考代码:#include <stdio.h>int is(int n);int main(void){    int i;    for (i = 1……

[编程入门]阶乘求和

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    long long int n,Sn,a,b;    a=1;    b=1;    Sn=0;    s……

优质题解只有stdio.h

摘要:解题思路:注意事项:参考代码:#includeint main() {    char equation[10];    int correct = 0;    while (scanf("%s", ……