C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:利用ascll码解题注意事项:别忘加&参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c",&c1); scan…… 题解列表 2018年02月27日 0 点赞 0 评论 1058 浏览 评分:0.0
求圆的面积 (C语言代码) 摘要:解题思路:.2别忘了注意事项:不用说了吧参考代码:#include<stdio.h>int main(){ float a,c; scanf("%f",&a); c=3.1415*a*a; print…… 题解列表 2018年02月27日 0 点赞 0 评论 891 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:会用%符号求余注意事项:空格别忘了参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d",&d); c=d%10; b=(d%100-c)/…… 题解列表 2018年02月27日 0 点赞 0 评论 713 浏览 评分:0.0
蓝桥杯算法提高VIP-解二元一次方程组 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int k(int a,int b){ int i;while(b!=0){i=b;b=a%b;a=i;}return a;}int m…… 题解列表 2018年02月27日 0 点赞 0 评论 1955 浏览 评分:0.0
数列有序 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,j,n,m,flag; int a[100],b[101]; while(scanf("%d%d",&n…… 题解列表 2018年02月27日 0 点赞 0 评论 1437 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int N,i,j; scanf("%d",&N); fo…… 题解列表 2018年02月27日 0 点赞 0 评论 773 浏览 评分:0.0
蓝桥杯算法提高VIP-文化之旅 (Java代码) 摘要:解题思路:import java.util.*; //Dijksdra public class Main { static int[][] dis; static int[]…… 题解列表 2018年02月27日 1 点赞 2 评论 821 浏览 评分:0.0
蓝桥杯算法提高VIP-种树 (C语言代码) 摘要:解题思路:递归就可以了注意事项:参考代码:#include<stdio.h>int keng[40]={0},best=-1,n;int zhon_s(int wei,int begin,int m,…… 题解列表 2018年02月27日 0 点赞 0 评论 2481 浏览 评分:3.3
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码) 摘要:解题思路:用循环来写注意事项:参考代码:#include <stdio.h>//求[X,Y]内被除3余1并且被除5余3的整数的和int main(){ int x,y; scanf("%d %d",&…… 题解列表 2018年02月27日 0 点赞 0 评论 925 浏览 评分:9.9