汽水瓶 (C语言代码) 摘要:解题思路:构造一个函数,输入处理空瓶数,返回能喝多少瓶参考代码:#include <stdio.h>int chuli(int n){ int shang=0, yu=0; …… 题解列表 2019年02月21日 0 点赞 0 评论 616 浏览 评分:0.0
蓝桥杯算法提高VIP-林丹大战李宗伟 (C语言代码) 摘要:解题思路:注意事项:注意清空缓冲区就行了参考代码:#include <stdio.h>int main(){ int a = 0, t = 0; char x; while (x = getchar(…… 题解列表 2019年02月21日 0 点赞 0 评论 964 浏览 评分:0.0
蓝桥杯算法提高VIP-质数的后代 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i, j, n, x, a; scanf("%d", &n); for (i = 1; i <= n;…… 题解列表 2019年02月21日 0 点赞 1 评论 1300 浏览 评分:8.0
字符串中间和后边*号删除 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void fun(char *a);int main(){ char s[81]; gets(s); fun(s); …… 题解列表 2019年02月21日 0 点赞 0 评论 586 浏览 评分:0.0
DNA (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main3 { public static void main(String[] args) …… 题解列表 2019年02月21日 0 点赞 0 评论 853 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (Java代码) 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { int shuzhi=0; int zhimu =0; i…… 题解列表 2019年02月21日 0 点赞 0 评论 1127 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2019年02月21日 0 点赞 0 评论 664 浏览 评分:2.0
蓝桥杯基础练习VIP-分解质因数 (C语言代码) 摘要:解题思路:注意事项:参考代码:package day09;import java.util.Scanner;//T1464public class Main { public static void …… 题解列表 2019年02月21日 0 点赞 0 评论 738 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:参考代码:#include<stdio.h>int main(){ int x,y,a,b,c,d,e; scanf("%d",&x); a=x%10; b=x/10%10; c=x/100%10; …… 题解列表 2019年02月21日 1 点赞 0 评论 1000 浏览 评分:0.0
蓝桥杯算法提高VIP-Pascal三角 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a[100][100]={0,0}, i, j, n, i1; scanf(…… 题解列表 2019年02月21日 2 点赞 0 评论 619 浏览 评分:0.0