奖学金 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ int n; scanf("%d",&n); int i[305],j[305],k[305]…… 题解列表 2017年08月28日 10 点赞 0 评论 2189 浏览 评分:0.0
C语言训练-列出最简真分数序列* (C语言代码) 摘要:解题思路:分子与分母的最大公约数为1注意事项:参考代码:#include<stdio.h>int gcd(int a,int b);int main(){ int i; for(i=1;i…… 题解列表 2017年08月28日 0 点赞 0 评论 612 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[55]={0}; gets(str); …… 题解列表 2017年08月28日 0 点赞 0 评论 751 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:a+b注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF) printf("%d\n…… 题解列表 2017年08月28日 0 点赞 0 评论 668 浏览 评分:0.0
时间转换 (Java代码) 摘要:解题思路:注意事项:用date类写不行吗?说我是运行错误的。代码仅供参考。参考代码:package s10;import java.text.SimpleDateFormat;import java.…… 题解列表 2017年08月28日 1 点赞 0 评论 710 浏览 评分:0.0
剔除相关数 (C语言代码) 摘要:解题思路:我写的比较麻烦,本程序是用字符串数组保存各个数据,为保证最后输出正确,将开始的字符串赋值到另外一个字符串数组a于b里(且各个字符串数组的下标与相对应的数据要一致),将a与b的字符串进行排序,…… 题解列表 2017年08月28日 1 点赞 0 评论 1171 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:输出内容为3行 3次换行注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\n…… 题解列表 2017年08月28日 1 点赞 0 评论 704 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){ int number,t,a[100],i=0; scanf("%d",&number); do{ a[i]=number%8; …… 题解列表 2017年08月28日 0 点赞 0 评论 744 浏览 评分:0.0
printf基础练习2 (C语言代码) 摘要:解题思路:输入一个整数,(此数大小如何限制不会),此数值赋于a,分别输出八进制,十进制,十六进制。注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf…… 题解列表 2017年08月29日 0 点赞 0 评论 674 浏览 评分:0.0
C语言训练-排序问题<1> (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int num[4]={0…… 题解列表 2017年08月29日 0 点赞 0 评论 745 浏览 评分:0.0