C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:解题思路:运用数组的方法,实现逆向输出。注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>i…… 题解列表 2018年01月03日 0 点赞 0 评论 752 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:方法一:运用数组的逆向输出#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){ int…… 题解列表 2018年01月03日 0 点赞 0 评论 1039 浏览 评分:0.0
字符串的输入输出处理 (C语言代码) 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){ int n,i,j; ch…… 题解列表 2018年01月03日 0 点赞 0 评论 1203 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:输出字符就好注意事项:参考代码:#include<stdint.h>void main(){ puts("*******************"); puts("Hello World!"…… 题解列表 2018年01月03日 0 点赞 0 评论 504 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int p[3],a,c,e; printf("请输入3个整数:"); for(a=0;a<3…… 题解列表 2018年01月03日 0 点赞 0 评论 665 浏览 评分:0.0
蓝桥杯算法训练VIP-整数平均值 (C++代码) 摘要:#include<iostream> using namespace std; int main(){ int n,s=0; cin>>n; int a[n]; …… 题解列表 2018年01月03日 0 点赞 0 评论 1442 浏览 评分:0.0
蓝桥杯算法训练VIP-整除问题 (C++代码) 摘要:#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; for(in…… 题解列表 2018年01月03日 0 点赞 0 评论 1109 浏览 评分:0.0
C语言考试练习题_保留字母 (C语言代码) 摘要:#include <stdio.h> int main(void) { int i; char str[512]; gets(str); for (i=0; str[i…… 题解列表 2018年01月03日 0 点赞 0 评论 1020 浏览 评分:0.0
最大公约数以及最小公倍数的函数(简单易懂的C语言) 摘要:#include<stdio.h>#include<string.h>#include<math.h>int gy(int a,int b){ int m,n,t; m=a; n=b…… 题解列表 2018年01月03日 0 点赞 0 评论 1447 浏览 评分:0.0
拆分位数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,s; printf("请输入一个三位数:"); scanf("%d",&s); a=s/10…… 题解列表 2018年01月04日 0 点赞 0 评论 837 浏览 评分:0.0