3000米排名预测 (C语言代码) 摘要:解题思路:生成全排列,对每一个排列检验是否满足所给的m个条件,用ans数组存储符合要求的排列注意事项:参考代码:#include <stdio.h> int n,m,cnt; int ans[20…… 题解列表 2019年01月23日 1 点赞 0 评论 1629 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路: 输出从-100到150度的温度->华氏温度转换表 &nbs 题解列表 2019年01月23日 0 点赞 0 评论 750 浏览 评分:0.0
蓝桥杯算法提高VIP-实数相加 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<cstring>using namespace std;int main(){ …… 题解列表 2019年01月23日 2 点赞 0 评论 1194 浏览 评分:0.0
C语言 求解: c++_ch02_02 (C语言代码) 摘要:解题思路:scanf函数用来输入两个操作数和操作符,操作数使用int类型,操作符使用char类型。使用switch判断比较简单。注意事项:参考代码:#include <stdio.h> int ma…… 题解列表 2019年01月24日 2 点赞 0 评论 1263 浏览 评分:0.0
C语言训练-求1+2!+3!+...+N!的和 (C语言代码) 摘要:解题思路:循环i 到 n 条件 注意事项:初始化累加sum = 0;累乘v =1;参考代码:#include <stdio.h> int sum_J(int n) { long int sum=…… 题解列表 2019年01月24日 0 点赞 0 评论 599 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main {public static void main(String[] args) { Scanne…… 题解列表 2019年01月24日 0 点赞 0 评论 719 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main {public static void main(String[] args) { Scanne…… 题解列表 2019年01月24日 0 点赞 0 评论 635 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C语言代码) 摘要:解题思路:注意事项:不知道为啥.....范围给改成10<n<=54就过了。。。。而10<n<100却不行参考代码:#include <stdio.h>int main(){ int n; int i;…… 题解列表 2019年01月24日 0 点赞 0 评论 1042 浏览 评分:0.0
循环入门练习1 (C语言代码) 摘要:解题思路:定义两个变量a,b,一个用来控制循环,一个累加;注意事项:a,b的关系不要搞错了参考代码:#include<stdio.h>int main(){ int a,b; a=0; …… 题解列表 2019年01月24日 0 点赞 0 评论 816 浏览 评分:0.0
循环入门练习4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,N; a=0; b=0; scanf("%d",&N); whil…… 题解列表 2019年01月24日 0 点赞 0 评论 840 浏览 评分:0.0