蓝桥杯2013年第四届真题-核桃的数量 (C++代码) 摘要:解题思路:直接暴力。注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>…… 题解列表 2019年01月30日 2 点赞 0 评论 696 浏览 评分:0.0
内码对称 位运算 摘要:参考代码:#include <stdio.h> #include <math.h> int main() { long long n,tmp,tmp1; int cnt=0,…… 题解列表 2019年01月30日 0 点赞 0 评论 851 浏览 评分:0.0
C二级辅导-分段函数 (C语言代码) 摘要:解题思路:注意事项: 2*x - 1不能写成2x - 1 3*x - 11不能写成3x - 11参考代码:#include& 题解列表 2019年01月30日 0 点赞 0 评论 588 浏览 评分:0.0
C二级辅导-温度转换 (C语言代码) 摘要:解题思路:注意事项:特别注意5.0/9.0分子分母两项必须保证至少有一项为小数,因为如果写成5/9,编译器会把结果默认为整型0而不是一个浮点型数参考代码:#include<stdio.h>int ma…… 题解列表 2019年01月30日 0 点赞 0 评论 653 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)为通俗易懂而生——飞扬 摘要:解题思路: 素数除2之外,其他都是奇数注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d", &n); for (…… 题解列表 2019年01月30日 0 点赞 0 评论 1089 浏览 评分:0.0
【偶数求和】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,flag=0,sum=0,i; while(scanf("%d%d",&n,&m)!=EOF){…… 题解列表 2019年01月30日 0 点赞 0 评论 545 浏览 评分:0.0
蓝桥杯算法提高VIP-笨小猴 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> bool isPrime(int input) { if(input<2) re…… 题解列表 2019年01月30日 0 点赞 0 评论 1384 浏览 评分:0.0
优质题解 剔除相关数 (C++代码) 摘要:解题思路: 使用STL中的set集合。可以自动排序,并保证不重复插入。 (1)先定义一个转换函数change()实现:把原来输入的整数x里面的数字的重新从小到大排列组合成新的整数,…… 题解列表 2019年01月30日 2 点赞 1 评论 1696 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:将1到20!放在数组里面,避免重复计算参考代码:#include<stdio.h>int main(){ int num; long long ans=0; scanf("%d",&num)…… 题解列表 2019年01月29日 0 点赞 0 评论 439 浏览 评分:0.0
可以计算超级长的数(C语言代码) 摘要:解题思路:把最终结果的每一项存在数组里面,这样做可以计算超长整数。参考代码:#include<stdio.h>#include<malloc.h>int main(){ int num; scanf(…… 题解列表 2019年01月29日 0 点赞 0 评论 765 浏览 评分:0.0