题解列表
[编程入门]数字的处理与判断---利用for循环详解---(C语言)
摘要:```c
#include
int main()
{
int a,n,s;
int i=0,t=0,n1;
scanf("%d",&a);//12345
n=a;//……
字符串的修改(C语言)(简单易懂)(详细)(已重新修改)
摘要:解题思路:题目的最终结果:对任给的两个字符串A和B,计算出将字符串A变换为字符串B所用的最少字符操作次数。就是说要把两个字符串变为一模一样。首先个数一定要一样!参考代码: x1=strlen(……
成绩等级转换Switch语句练习题解
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; while (scanf("%d",&x)!=EOF){ y=x/10;……
编辑入门 成绩评定】
摘要:参考代码:#include<stdio.h>void main(){ int a; scanf("%d",&a); if(a>=90) printf("A\n"); if(a>=8……
二级C语言-分段函数题解
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ float x,y; scanf("%f",&x); if(……
二级c语言-分段函数题解
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float x,y; scanf("%f",&x); if(x<1) y=x; ……
1850没想到大意在换行上面C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c;while (~scanf ("%d/%d/%d",&a,&b,&c)) { ……