二级C语言-成绩归类-题解(C语言代码) 简单易懂 思路清晰! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int b=0,c=0,d=0,f=0; int x; scanf("%d",&x); while (x>0)…… 题解列表 2020年11月28日 0 点赞 0 评论 677 浏览 评分:6.0
求总时间-题解(C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ int n,i; float a[100],sum=0; scanf("%d",&n); a[0]=30.0; f…… 题解列表 2020年11月28日 0 点赞 0 评论 574 浏览 评分:6.0
回文判断-题解(C语言代码) 详细讲解! 思路清晰 简单易懂! 摘要:解题思路:首先用到字符串函数 记得写头文件注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int i,n,j=1; char …… 题解列表 2020年11月29日 0 点赞 0 评论 1031 浏览 评分:6.0
蓝桥杯算法提高-矩阵转置-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[20][20]; int n,m,i,j,temp,max; scanf("%d%d",&n,&m)…… 题解列表 2020年12月01日 0 点赞 0 评论 1180 浏览 评分:6.0
[编程入门]第一个HelloWorld程序!-题解(Python代码) 摘要:解题思路:注意事项:参考代码:print("**************************")print("Hello World!")print("**********************…… 题解列表 2020年12月01日 0 点赞 0 评论 1283 浏览 评分:6.0
[编程入门]数字逆序输出-题解(C语言代码) 摘要:解题思路:通过for循环就可以直接搞定注意事项:开始的i得取0值。参考代码:#include<stdio.h>int main(){ int woqu[10]={0}; int i = 0…… 题解列表 2020年12月03日 0 点赞 0 评论 676 浏览 评分:6.0
内码对称-题解(C语言代码) 摘要:解题思路:注意事项:参考代码://内码对称#include<stdio.h>int cheak(long long int num);/********************************…… 题解列表 2020年12月03日 0 点赞 0 评论 1494 浏览 评分:6.0
大神老白-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,sum; int a[100]; while((scanf("%d",&n))!=EOF){ …… 题解列表 2020年12月03日 0 点赞 2 评论 1205 浏览 评分:6.0
数据结构-字符串连接-题解(C语言代码) 摘要:解题思路:这里用调用函数可以使程序更简洁注意事项:参考代码:#include#includeint main(){ int check (char x[1000], int b );//对被调用…… 题解列表 2020年12月05日 0 点赞 1 评论 1367 浏览 评分:6.0
字符串的修改-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(void) { char a[200]; char b[200]…… 题解列表 2020年12月05日 0 点赞 3 评论 1038 浏览 评分:6.0