蓝桥杯2013年第四届真题-核桃的数量 (C语言代码)简单版。 摘要:解题思路:本题可以理解为求三个数的最小公倍数。注意事项:参考代码:#include<stdio.h>int main() { int x,y,z; int k=1; scanf("%d %d %d",…… 题解列表 2018年12月25日 0 点赞 0 评论 1086 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:直接提交注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("…… 题解列表 2018年12月25日 0 点赞 0 评论 678 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:直接提交注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("…… 题解列表 2018年12月25日 0 点赞 0 评论 609 浏览 评分:0.0
大小写转换 (C++代码)水一发 摘要:水起来参考代码:#include <bits/stdc++.h> using namespace std; int main(){ string str; while(getl…… 题解列表 2018年12月25日 0 点赞 0 评论 1204 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:复制注意事项:别忘换行参考代码:#include<stdio.h>int main(){ printf("**************************\n"); printf("He…… 题解列表 2018年12月25日 1 点赞 0 评论 553 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:三目运算注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d",a>(…… 题解列表 2018年12月25日 0 点赞 0 评论 698 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:输入后+4注意事项:%c输出参考代码:#include<stdio.h>int main() { char a,b,c,d,e; a='C'; b='h'; …… 题解列表 2018年12月25日 0 点赞 0 评论 804 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:自己看注意事项:函数参考代码:#include<stdio.h>#include<string.h>int main() { char str[100]; int i,n; gets(str…… 题解列表 2018年12月25日 0 点赞 0 评论 739 浏览 评分:0.0
蓝桥杯历届试题-网络寻路 (C++代码) dfs 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std;int n, m;const int maxn = 10005…… 题解列表 2018年12月25日 2 点赞 0 评论 1380 浏览 评分:0.0
格子位置 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class T1538 { public static void main(String[] …… 题解列表 2018年12月26日 0 点赞 0 评论 892 浏览 评分:0.0