C语言训练-排序问题<1> (C语言代码) 摘要:#include<stdio.h> int main() { int a[4]; int i, j; int t; for(i=0; i<4; i++) …… 题解列表 2017年10月30日 0 点赞 1 评论 447 浏览 评分:0.0
母牛的故事 (C语言代码) 摘要:解题思路: 将每前四年产的牛数放到一个一维数组中(四个数据),每隔四年刷数组内该处的数据注意事项:要注意年限以及增长规律参考代码:#include<stdio.h>void main(void)…… 题解列表 2017年10月30日 0 点赞 0 评论 730 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { char s[100], t[50]; int len; i…… 题解列表 2017年10月30日 1 点赞 0 评论 1016 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void zhuangzhi (int a[][3])//装置函数{ int i,j,t; for(i=0;i<3;i++)…… 题解列表 2017年10月30日 0 点赞 0 评论 1252 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(void){ printf("**************************\n"); printf("Holle Wo…… 题解列表 2017年10月30日 0 点赞 0 评论 852 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码://jgt #include<stdio.h> struct DAY { int year; int month; int day;…… 题解列表 2017年10月30日 1 点赞 0 评论 768 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题8.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(int argc,char**argv){ int a,m; scanf("%d",&a); m=i…… 题解列表 2017年10月30日 0 点赞 0 评论 892 浏览 评分:0.0
A+B for Input-Output Practice (IV) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int t, a, sum, i; scanf("%d", &t); do { &nb 题解列表 2017年10月30日 0 点赞 0 评论 698 浏览 评分:0.0
A+B for Input-Output Practice (III) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main{ int a,b; while(~scanf("%d%d", &a, &b)) { if…… 题解列表 2017年10月30日 0 点赞 0 评论 822 浏览 评分:0.0