C语言程序设计教程(第三版)课后习题5.4 (C语言代码)挑战最简 摘要:解题思路:看代码注意事项:看代码参考代码:#include<stdio.h>int main(){ int a, b, c; scanf("%d%*c%d%*c%d", &a, &b, &…… 题解列表 2019年01月25日 0 点赞 1 评论 500 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)不限制位数(为通俗易懂而生——飞扬) 摘要:解题思路: 看代码注意事项: 看代码参考代码:#include<stdio.h>#include <math.h>int main(){ int n, m, count = 0; scan…… 题解列表 2019年01月25日 0 点赞 0 评论 969 浏览 评分:0.0
蓝桥杯算法训练VIP-暗恋 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int r,c; cin>>r>>c; string s[r]; in…… 题解列表 2019年01月25日 0 点赞 0 评论 748 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量 (C++代码) 摘要:解题思路:求3个数的最小公倍数注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c,i; cin>>a…… 题解列表 2019年01月25日 0 点赞 0 评论 810 浏览 评分:0.0
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码) 摘要:解题思路: 注意事项:输入整数及其个数的范围条件参考代码:#include <stdio.h>#include <math.h>int main(int argc, char *argv[]) { i…… 题解列表 2019年01月25日 0 点赞 0 评论 800 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量 (C语言代码) 摘要:解题思路: 找到一个值是3的倍数且同余,那么该值就是结果QWQ注意事项: 参考代码:#include <stdio.h> int main(){ int i = 3; int a,b,c; …… 题解列表 2019年01月25日 0 点赞 0 评论 533 浏览 评分:0.0
【出圈】 (C语言代码)C语言函数模块化 摘要:解题思路:参考代码:#include<stdio.h> #include<stdlib.h> int n,m; int *a; void init(); void count_off…… 题解列表 2019年01月25日 1 点赞 0 评论 981 浏览 评分:0.0
【回文数(二)】 (C语言函数模块化) 摘要:解题思路:参考代码:#include <stdio.h> #include <string.h> int ishw(char *m) { int len=strlen(m); …… 题解列表 2019年01月25日 0 点赞 0 评论 1001 浏览 评分:0.0
蓝桥杯算法提高VIP-棋盘多项式 (C++代码)dfs 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<string.h>using namespace std;int n,map[…… 题解列表 2019年01月25日 1 点赞 0 评论 961 浏览 评分:0.0
字符串的输入输出处理 (Java代码) 摘要:解题思路:注意事项:参考代码: Scanner sc = new Scanner(System.in); String a = sc.nextLine(); String[] s = new S…… 题解列表 2019年01月26日 0 点赞 1 评论 360 浏览 评分:0.0