C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){printf("**************************\n");printf("Hello Worl…… 题解列表 2018年01月23日 0 点赞 0 评论 860 浏览 评分:0.0
1001-1050难题 摘要:解题思路:5.8#include<stdio.h>main(){ int n, num, n1, n2, n3, n4, n5; scanf("%d",&n); num = (n - 1 ) / 10…… 题解列表 2018年01月23日 0 点赞 0 评论 1252 浏览 评分:0.0
蓝桥杯算法训练VIP-新生舞会 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>struct student{ char number[21]; char nam…… 题解列表 2018年01月23日 0 点赞 0 评论 1153 浏览 评分:0.0
蓝桥杯算法训练VIP-特殊的数字四十 (C语言代码) 摘要:解题思路:注意事项:参考代码: int i; for(i=1000;i<=9999;i++){ if(i/1000+(i/100%10)+(i/10%10)+i%10==10…… 题解列表 2018年01月23日 0 点赞 0 评论 928 浏览 评分:0.0
蓝桥杯算法训练VIP-矩阵加法 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int i,j; int m,n; int a[10…… 题解列表 2018年01月23日 0 点赞 0 评论 1217 浏览 评分:0.0
蓝桥杯算法提高VIP-现代诗如蚯蚓 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//将a从下标n开始截取k个字符放到bvoid get_duang(char * a,char * …… 题解列表 2018年01月23日 2 点赞 0 评论 1580 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:1.先将各位数字分解开,利用循环语句得到数字位数。 2.再实现“用空格分开每个数字 ”,“将数字倒序输出 ”。注意事项: 1.在利用循环语句分解各位数字时,每取…… 题解列表 2018年01月23日 2 点赞 0 评论 1008 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:#include<iostream> using namespace std ; void baoshi(int x) ; int main() { int h,m ; cin>>h>…… 题解列表 2018年01月23日 0 点赞 0 评论 1206 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n; int a,i; int number=0; scanf("%d",…… 题解列表 2018年01月23日 0 点赞 0 评论 753 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int number[10],math[10]; int i,n,t=0,z=0,p; …… 题解列表 2018年01月24日 0 点赞 0 评论 702 浏览 评分:0.0