题解列表

筛选

2001,好懂的方法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){    int a,b,c;    scanf("%d%d%d",&a,&b,&……

二级c语言-分段函数题解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     float  x,y;  scanf("%f",&x);     if(x<1)     y=x;   ……

二级C语言-分段函数题解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){     float  x,y;  scanf("%f",&x);     if(……

编辑入门 成绩评定

摘要:解题思路:用if语句注意事项:需要搞懂其中的逻辑参考代码:#include <stdio.h>void main(){ int a; scanf("%d",&a); if (a>=90) printf……

编程入门成绩评定

摘要:解题思路:简单的运用if来解决注意事项:仔细一些注意符号,英文是否都参考代码#include<stdio.h>               /*头文件*/void main()            ……

编辑入门 成绩评定】

摘要:参考代码:#include<stdio.h>void main(){ int a; scanf("%d",&a);    if(a>=90)     printf("A\n"); if(a>=8……