2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n=0; double aver,a[11],sum=0; for(i=0;i<10;i++) {s…… 题解列表 2019年05月10日 0 点赞 0 评论 599 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o\n",n); return 0;}…… 题解列表 2019年05月10日 0 点赞 0 评论 614 浏览 评分:0.0
C二级辅导-温度转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double n; scanf("%lf",&n); printf("%.2lf\n",5*(n-32)/9);…… 题解列表 2019年05月10日 0 点赞 0 评论 395 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 (C++代码)水 摘要:解题思路: 第一次拿平板写代码,感觉还是不错的 水题,水一下就过了参考代码:#include<bits/stdc++.h> using namespace std; int main(…… 题解列表 2019年05月11日 0 点赞 0 评论 822 浏览 评分:0.0
蓝桥杯算法提高VIP-一元一次方程 (C语言代码)哈哈哈! 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ double a,b; scanf("%lf%lf",&a,&b); printf("%.2f",-b/a)…… 题解列表 2019年05月11日 0 点赞 0 评论 793 浏览 评分:0.0
蓝桥杯算法提高VIP-企业奖金发放 (C语言代码)哈哈哈! 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ double x,y; scanf("%lf",&x); if(x<=100000) y=x*0.1; e…… 题解列表 2019年05月11日 0 点赞 0 评论 628 浏览 评分:0.0
蓝桥杯算法提高VIP-勾股数 (C语言代码)哈哈哈! 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int a,b,c; for(a=1;a<1000;a++) for(b=1;b<1000;b++) …… 题解列表 2019年05月11日 0 点赞 0 评论 463 浏览 评分:0.0
蓝桥杯算法提高VIP-图形输出 (C语言代码)这题有个小疑问! 摘要:解题思路:正常的思路是用printf()格式打印就行了。但是我想用数组赋值的方法解决,于是就出现了一个疑惑!!如果有知道答案的人,可以私聊我。注意事项:就是用数组赋值的方法会出现图形一样但是答案错误的…… 题解列表 2019年05月11日 0 点赞 2 评论 702 浏览 评分:0.0
教学楼的楼梯 (C语言代码) 摘要:解题思路:无脑暴力。注意第一级楼梯的时候,也算有一种走法,不知道为什么注意事项:参考代码:#include<stdio.h>int main(){ int M[40],k,i,j,N,n,c=0,b[…… 题解列表 2019年05月14日 1 点赞 0 评论 597 浏览 评分:0.0
C语言训练-最大数问题 (C语言代码) 摘要:解题思路:注意事项:-1出现是结束,不用比较-1了(我语文不好,卡了几遍)当输入的数全比-1小的时候,记得不要max和-1比较了。参考代码:#include<stdio.h>int main(){ …… 题解列表 2019年05月11日 0 点赞 0 评论 522 浏览 评分:0.0