弟弟的作业 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class qisan {public static void main(String[] args) {…… 题解列表 2018年02月25日 2 点赞 0 评论 1528 浏览 评分:0.0
蓝桥杯算法提高VIP-笨小猴 (C语言代码)构造简单 最适合和我一样的小白了 欢迎欣赏 摘要:解题思路: 统计重复字母的个数 然后判断 注意事项: 如果有不清楚的 欢迎提问 谢谢! 参考代码: #include <stdi…… 题解列表 2018年02月25日 2 点赞 0 评论 1223 浏览 评分:9.9
【数组的距离】 (C语言代码) 摘要:#include <stdio.h>#include <math.h>int main(){ int i,j,m,n,t,min; int f[1000],g[1000]; w…… 题解列表 2018年02月25日 0 点赞 0 评论 1066 浏览 评分:0.0
【蟠桃记】 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,n,s; while(scanf("%d",&n)!=EOF) { s=1;&nb 题解列表 2018年02月25日 0 点赞 0 评论 1160 浏览 评分:0.0
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,n,sum=0,x; scanf("%d %d",&…… 题解列表 2018年02月25日 2 点赞 0 评论 1325 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,t=0,i,j; scanf ("%d",&n); for ( i=2;i<=n;i…… 题解列表 2018年02月25日 0 点赞 0 评论 862 浏览 评分:0.0
杨辉三角 (C语言代码) 摘要:#include <stdio.h>int main(){ int a,i,j; int b[30][30]; while(scanf("%d",&a)!=EOF) …… 题解列表 2018年02月25日 0 点赞 0 评论 1010 浏览 评分:0.0
C语言训练-斐波纳契数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int f1=0,f2=1,f3=1; scanf("%d",&n); …… 题解列表 2018年02月25日 1 点赞 0 评论 923 浏览 评分:0.0
C语言训练-数字母 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int sum=0; char a; while(scanf("%c",&a)==1){…… 题解列表 2018年02月25日 1 点赞 0 评论 1006 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (Java代码) 摘要:解题思路:注意事项:语法:public char[] toCharArray()参考代码: import java.io.InputStream; import java.util.Scan…… 题解列表 2018年02月25日 0 点赞 0 评论 890 浏览 评分:0.0