C二级辅导-分段函数 (C语言代码) 摘要:解题思路:注意事项: 2*x - 1不能写成2x - 1 3*x - 11不能写成3x - 11参考代码:#include& 题解列表 2019年01月30日 0 点赞 0 评论 466 浏览 评分:0.0
内码对称 位运算 摘要:参考代码:#include <stdio.h> #include <math.h> int main() { long long n,tmp,tmp1; int cnt=0,…… 题解列表 2019年01月30日 0 点赞 0 评论 708 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量 (C++代码) 摘要:解题思路:直接暴力。注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>…… 题解列表 2019年01月30日 2 点赞 0 评论 539 浏览 评分:0.0
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*编制程序,输入n个整数(n从键盘输入,n>0),输出它们的偶数和。*/#include<stdio.h>int main(){ int n, sum = 0, …… 题解列表 2019年01月30日 0 点赞 0 评论 734 浏览 评分:0.0
C二级辅导-等差数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i, n, sum1 = 2, sum = 0; scanf("%d", &n); f…… 题解列表 2019年01月30日 0 点赞 0 评论 773 浏览 评分:0.0
power 力量函数——舍罕王的失算 (C语言代码) 摘要:解题思路:1+2+4+8+16+32+64+128+256+512+1024+.........2^64注意事项:#include <math.h>#include <stdio.h>参考代码:#in…… 题解列表 2019年01月30日 1 点赞 0 评论 570 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*求出10至1000之内能同时被2、3、7整除的数,并输出。每行一个。*/#include<stdio.h>int main(){ int i, j; fo…… 题解列表 2019年01月30日 0 点赞 0 评论 530 浏览 评分:0.0
C二级辅导-计负均正 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*从键盘输入任意20个整型数,统计其中的负数个数并求所有正数的平均值。保留两位小数*/#include<stdio.h>int main(){ int i, n …… 题解列表 2019年01月30日 0 点赞 0 评论 695 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码) 摘要:解题思路:a*b = 最大公约数*最大公倍数注意事项:前面有一篇帖子是跟这道题一模一样的参考代码:/*输入两个正整数m和n,求其最大公约数和最小公倍数。*/#include<stdio.h>int…… 题解列表 2019年01月30日 0 点赞 0 评论 955 浏览 评分:0.0
C二级辅导-统计字符 (C语言代码) 摘要:解题思路:注意事项: 前面有一篇类似的帖子参考代码:/*输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。*/#include<stdio.h>int m…… 题解列表 2019年01月30日 0 点赞 0 评论 716 浏览 评分:0.0