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 评论 641 浏览 评分:0.0
蓝桥杯算法提高VIP-一元一次方程 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b; // double型 double x; scanf("%lf…… 题解列表 2018年09月20日 7 点赞 0 评论 2482 浏览 评分: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 评论 695 浏览 评分:0.0
循环入门练习5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,i=1; scanf("%d",&x); while(i<x) { …… 题解列表 2018年09月20日 0 点赞 0 评论 1058 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C语言代码) 摘要:解题思路://第一个for为5位数;第二个for为6位数//如果flag为-1 则输出//if判断 a,b,c与n的关系注意事项:参考代码:#include<stdio.h>int main(){ …… 题解列表 2018年09月19日 6 点赞 1 评论 1121 浏览 评分:9.0
数字整除 (C语言代码) 摘要:解题思路:思路之后补上注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char chars[110]; int former=0,si…… 题解列表 2018年09月19日 0 点赞 0 评论 1124 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,sum; scanf("%d%d",&a&b); sum=a+b pr…… 题解列表 2018年09月19日 0 点赞 0 评论 535 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\n"); printf("He…… 题解列表 2018年09月19日 0 点赞 0 评论 475 浏览 评分:0.0
C语言训练-"水仙花数"问题1 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std;int main(){ int a,b; int ge,shi,bai; cin>>a; b…… 题解列表 2018年09月19日 0 点赞 0 评论 653 浏览 评分:0.0
求圆的面积 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main () { float a,r; …… 题解列表 2018年09月19日 0 点赞 0 评论 659 浏览 评分:0.0