C语言程序设计教程(第三版)课后习题6.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double s1=0,s2=0,s3=0,i; int a,b,c; scanf("%d%d%d",&a,&b…… 题解列表 2018年09月20日 0 点赞 0 评论 1209 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,j=0; long int sn=0,s=1; scanf("%d",&n); for(i=1;…… 题解列表 2018年09月20日 0 点赞 0 评论 1126 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i; long int sn=0,s=2; scanf("%d",&…… 题解列表 2018年09月20日 0 点赞 0 评论 958 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c; int en=0,black=0,number=0,other=0; while((c=getc…… 题解列表 2018年09月20日 0 点赞 0 评论 964 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,p,q; scanf("%d%d",&m,&n); p=m*n; while(n!=0) { …… 题解列表 2018年09月20日 0 点赞 0 评论 1000 浏览 评分:0.0
蓝桥杯算法提高VIP-一元一次方程 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b; // double型 double x; scanf("%lf…… 题解列表 2018年09月20日 7 点赞 0 评论 2727 浏览 评分:9.9
循环入门练习6 (C语言代码) 摘要:解题思路:两个不同规律的数,两层循环注意事项:参考代码:#include<stdio.h>int main(){ int i=1,N=0,j=1; scanf("%d",&N); w…… 题解列表 2018年09月20日 0 点赞 0 评论 930 浏览 评分:0.0
循环入门练习5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,i=1; scanf("%d",&x); while(i<x) { …… 题解列表 2018年09月20日 0 点赞 0 评论 1561 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C语言代码) 摘要:解题思路://第一个for为5位数;第二个for为6位数//如果flag为-1 则输出//if判断 a,b,c与n的关系注意事项:参考代码:#include<stdio.h>int main(){ …… 题解列表 2018年09月19日 6 点赞 1 评论 1431 浏览 评分:9.0
数字整除 (C语言代码) 摘要:解题思路:思路之后补上注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char chars[110]; int former=0,si…… 题解列表 2018年09月19日 0 点赞 0 评论 1599 浏览 评分:0.0