杨辉三角 (C语言代码) 摘要:#include <stdio.h>int main(){ int a,i,j; int b[30][30]; while(scanf("%d",&a)!=EOF) …… 题解列表 2018年02月25日 0 点赞 0 评论 1078 浏览 评分: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 评论 995 浏览 评分: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 评论 1441 浏览 评分: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 评论 1259 浏览 评分:0.0
【数组的距离】 (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 评论 1192 浏览 评分:0.0
蓝桥杯算法提高VIP-笨小猴 (C语言代码)构造简单 最适合和我一样的小白了 欢迎欣赏 摘要:解题思路: 统计重复字母的个数 然后判断 注意事项: 如果有不清楚的 欢迎提问 谢谢! 参考代码: #include <stdi…… 题解列表 2018年02月25日 2 点赞 0 评论 1386 浏览 评分:9.9
弟弟的作业 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class qisan {public static void main(String[] args) {…… 题解列表 2018年02月25日 2 点赞 0 评论 1672 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>#define P printf#define S scanf#de…… 题解列表 2018年02月25日 0 点赞 0 评论 1116 浏览 评分:0.0
A+B for Input-Output Practice (II) (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main {public static void main(String[] args) {Scanner…… 题解列表 2018年02月25日 2 点赞 0 评论 1106 浏览 评分:4.7
蓝桥杯历届试题-错误票据 (Java代码) 摘要: import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; public …… 题解列表 2018年02月25日 1 点赞 0 评论 1043 浏览 评分:0.0