求组合数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> unsigned long long factorial(int x) { unsigned long long num=1;…… 题解列表 2018年04月21日 0 点赞 0 评论 1712 浏览 评分:0.0
C语言训练-排序问题<1> (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){int a…… 题解列表 2018年04月21日 0 点赞 0 评论 701 浏览 评分:0.0
花落的新手代码 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int main() { int …… 题解列表 2018年04月21日 0 点赞 0 评论 1880 浏览 评分:0.0
每日一题 spperman 题解1485:蓝桥杯算法提高VIP-Torry的困惑(提高型) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b=0,i,n,j,f,c; long product=…… 题解列表 2018年04月21日 11 点赞 0 评论 1613 浏览 评分:2.0
C语言训练-排序问题<2> (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){int a…… 题解列表 2018年04月21日 0 点赞 0 评论 826 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (Java代码) 摘要:解题思路:从键盘输入一个字符串,利用toCharArray()把字符串转化成数组,在for循环中判断ch[i],如果ch[i]在a~y中,则ch[i]++,如果ch[i]=='z',则…… 题解列表 2018年04月21日 0 点赞 0 评论 857 浏览 评分:0.0
C语言训练-数字母 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){char …… 题解列表 2018年04月21日 0 点赞 0 评论 1112 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (Java代码) 摘要:解题思路:创建一个长度为3的数组,用for循环输入,然后用冒泡法排序,最后按顺序输出。注意事项:记得每个数组元素后输出一个空格,参考代码:import java.util.Scanner;public…… 题解列表 2018年04月21日 0 点赞 0 评论 895 浏览 评分:0.0
蓝桥杯2013年第四届真题-带分数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int n; int ans=0; int …… 题解列表 2018年04月21日 0 点赞 0 评论 802 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路:1,创建一个长度为3的数组,从键盘输入值2,选择法排序3,把排序后的数组用for循环输出注意事项:strlen()只能求字符数组的长度。参考代码:#include<stdio.h>#incl…… 题解列表 2018年04月21日 0 点赞 0 评论 1073 浏览 评分:0.0