C语言程序设计教程(第三版)课后习题6.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i,j,k; a=0;b=0;c=0; double sum1=0,sum2=0,sum3=…… 题解列表 2018年03月31日 1 点赞 0 评论 634 浏览 评分:0.0
P1018 (C++代码) 摘要:#include <iostream> using namespace std; int main() { int k, n; long long sum = 1; cin >> n…… 题解列表 2018年03月31日 1 点赞 0 评论 1052 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float c,f; scanf("%f",&f); c=5.0*(f-32.0)/9.0; p…… 题解列表 2018年03月31日 0 点赞 0 评论 694 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char ia[4]; int i; for(i=0;i<5;i++) { scan…… 题解列表 2018年03月31日 0 点赞 0 评论 592 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d%d%d",&a,&b,&c); if(a>…… 题解列表 2018年03月31日 0 点赞 0 评论 679 浏览 评分:0.0
优质题解 Manchester- 首字母大写 摘要:解题思路:①:第一个字符是小写字母的话,转化为大写字母②:之后,若一个字符为小写字母,并且它的前面一个字符为空白符,则把该小写字母转化为大写字母③:输出结果注意事项:第一个字符要单独判断一次,因为它是…… 题解列表 2018年03月31日 5 点赞 1 评论 3305 浏览 评分:9.6
幸运儿 (C语言代码) 摘要:解题思路:注意事项:参考代码://#include<iostream> #include<stdio.h> //using namespace std; int main() { int …… 题解列表 2018年03月31日 1 点赞 0 评论 1223 浏览 评分:0.0
蓝桥杯历届试题-分糖果 (雪枫大大叫SnowMapleQueen) 摘要:#include<iostream> using namespace std; int isSame(int a[],int n){ for(int i=1;i<n;i++) if…… 题解列表 2018年03月31日 2 点赞 0 评论 897 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:主要是运用c的取余和除法,适用于五位一下的数,并不是固定的,不懂的地方再问注意事项:参考代码:#include<stdio.h>int main(){ int num,a; int inde…… 题解列表 2018年03月30日 0 点赞 0 评论 891 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<string.h>int main(){ char str[1024]; char* p; int count1=0,count2=0,count3=0…… 题解列表 2018年03月30日 0 点赞 0 评论 1228 浏览 评分:0.0