C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:注意事项:参考代码://jgt #include<stdio.h> struct DAY { int year; int month; int day; …… 题解列表 2017年10月30日 1 点赞 0 评论 735 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(void){ printf("**************************\n"); printf("Holle Wo…… 题解列表 2017年10月30日 0 点赞 0 评论 835 浏览 评分: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 评论 1141 浏览 评分: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 评论 946 浏览 评分:0.0
母牛的故事 (C语言代码) 摘要:解题思路: 将每前四年产的牛数放到一个一维数组中(四个数据),每隔四年刷数组内该处的数据注意事项:要注意年限以及增长规律参考代码:#include<stdio.h>void main(void)…… 题解列表 2017年10月30日 0 点赞 0 评论 707 浏览 评分:0.0
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 评论 431 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:看题目,想类型,写代码。注意事项:函数的类型,符号。参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); print…… 题解列表 2017年10月30日 0 点赞 0 评论 844 浏览 评分:0.0
【计算球体积】 (C语言代码) 摘要:解题思路:看题目,想代码,写代码。注意事项: 函数类型,代码。参考代码:#include<stdio.h>#define PI 3.1415int main(){ float r,v; scanf("…… 题解列表 2017年10月30日 0 点赞 1 评论 1898 浏览 评分:6.0
买不到的数目 (C语言代码) 摘要:解题思路:一个公式,两个数最大不能组合的数为两个数之积减去两个数之和。注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d…… 题解列表 2017年10月31日 25 点赞 20 评论 3358 浏览 评分:8.3
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; a=1; b=1; c=a+b; scanf("c=%d",c); }…… 题解列表 2017年10月31日 0 点赞 0 评论 701 浏览 评分:0.0