C语言训练-排序问题<1> (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a[14]; int i,b; for(i=0;i<10;i++) a[i]=0; for(i…… 题解列表 2019年05月31日 0 点赞 0 评论 534 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> double fact(int n) { int i; double q=1; for(i=1;i<=n;i++) …… 题解列表 2019年05月31日 0 点赞 0 评论 565 浏览 评分:9.3
Tom数 (C语言代码) 摘要:解题思路:注意事项:参考代码:编译错误#include<stdio.h>int fac(unsigned int n, int s = 0){ s += n % 10; n /= 10; …… 题解列表 2019年05月30日 0 点赞 0 评论 653 浏览 评分:0.0
去掉空格 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[81]; while(gets(a)) { for(int i=0;a[i]!='\0&…… 题解列表 2019年05月29日 0 点赞 0 评论 746 浏览 评分:8.0
蓝桥杯历届试题-回文数字 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int turn(int x){ int i= 0,len = 0; long a[6],b = 0; b = x; for(i …… 题解列表 2019年05月29日 0 点赞 0 评论 997 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; for(i=10;i<=1000;i++) { if(i%2==0…… 题解列表 2019年05月29日 0 点赞 0 评论 427 浏览 评分:0.0
蓝桥杯算法提高VIP-文本加密 (C++和python代码) 摘要:解题思路:注意事项:参考代码://C++#include<iostream>#include<string>using namespace std;string EncryptChar(string …… 题解列表 2019年05月29日 0 点赞 0 评论 1258 浏览 评分:8.0
打印平行四边形 (C语言代码) 摘要:解题思路:先找到前面空格个数的规律注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); for(int i=1;…… 题解列表 2019年05月28日 0 点赞 0 评论 1208 浏览 评分:8.0
[编程入门]链表合并 (C语言代码)emmmm 摘要:解题思路: 1.输入 2.创建a链表 3.输出a链表看一下输入对不对 4.创建b链表 &nbs 题解列表 2019年05月28日 0 点赞 0 评论 1105 浏览 评分:0.0