C语言训练-数字母 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int count=0,i; char str[110]={0}…… 题解列表 2017年08月29日 0 点赞 0 评论 687 浏览 评分:0.0
C语言训练-最大数问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:.#include<stdio.h>int main(){ int tem=-100000,n; while(scanf("%d",&n)&&n!=-1) …… 题解列表 2017年08月29日 1 点赞 2 评论 674 浏览 评分:0.0
C语言训练-求1+2!+3!+...+N!的和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long j,sum=0; int i,N; scanf("%d",&N); …… 题解列表 2017年08月29日 0 点赞 0 评论 681 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:解题思路:直接用字符数组反向输出就好注意事项:输出单个字符用%c,\0不需要输出。参考代码:#include "stdio.h"int main(){ int i,l; char a[20]…… 题解列表 2017年08月29日 0 点赞 0 评论 667 浏览 评分:0.0
数列排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:# include <stdio.h># include <malloc.h>void destroy (int **p , int n);int main (void)…… 题解列表 2017年08月29日 0 点赞 0 评论 946 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C++代码) 摘要:解题思路:将每位数分给一个数组元素在进行判断注意事项:有点笨的方法参考代码:#include<iostream>using namespace std;int main(){ i…… 题解列表 2017年08月29日 1 点赞 0 评论 950 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:输入时空格为默认分隔,加入换行符分隔及可实现矩阵输入。注意事项:只适用于这种特定的题目。参考代码:#include<stdio.h>void main(){ int a[9]; …… 题解列表 2017年08月29日 3 点赞 0 评论 691 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路: 求出每次的数据,然后求和。注意事项:参考代码:#include <stdio.h>//using namespace std;int proc(int a);int main(){ …… 题解列表 2017年08月29日 0 点赞 0 评论 649 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:递归求最大公因数注意事项:参考代码:#include "stdafx.h"int gcd(int a,int b)//获取最大公约数{ if(a%b==0) return b; retur…… 题解列表 2017年08月29日 0 点赞 0 评论 624 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int gcd(int a,int b)//获取最大公约数{ if(a%b==0) return b; return gcd(b,a…… 题解列表 2017年08月29日 0 点赞 0 评论 624 浏览 评分:0.0