C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:#include<stdio.h> #include<string.h> #define N 80 int main() { int i, j; char str[4]…… 题解列表 2017年10月27日 1 点赞 0 评论 753 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:根据刚学的scanf进行使用注意事项:题目只求China的密码,当该值无任何输入时,以输出内容为准,而且若不输入&,系统会崩溃,%c用来输入字符型参考代码:#include<stdio.h>…… 题解列表 2017年10月03日 6 点赞 3 评论 952 浏览 评分:0.0
printf基础练习2 (C语言代码) 摘要:解题思路:看看题解确实挺好的注意事项:参考代码:#include<stdio.h>int main(){int a;scanf("%d",&a);//这里不需要换行吧?/nprintf("%#o …… 题解列表 2017年10月03日 0 点赞 0 评论 933 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d%d",&a,&b,&c); if(a>b){ …… 题解列表 2017年10月03日 1 点赞 0 评论 1001 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){printf("hello world\n");return 0;}…… 题解列表 2017年10月04日 0 点赞 0 评论 770 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int f; float c; …… 题解列表 2017年10月04日 0 点赞 0 评论 890 浏览 评分:0.0
三角形 (C++代码)递推 摘要:#include<iostream> using namespace std; int T , n , A[100][100],d[100][100]; int main(void){ …… 题解列表 2017年10月04日 0 点赞 0 评论 1071 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.2 (C语言代码) 摘要:解题思路:① 以a[0]为基准,遍历a[0]-a[9]找出最小项,将最小项赋值给a[0];② a[0]往后一个元素为a[1],然后以a[1]为基准,遍历a[1]-a[9]找出最小项,将最小项赋值给a[…… 题解列表 2017年10月04日 9 点赞 2 评论 972 浏览 评分:0.0
【金明的预算方案】 (C++代码) 摘要:#include<iostream> #include<cstring> using namespace std; int N,n,v[61],m[61],p[61],link[61][3…… 题解列表 2017年10月05日 3 点赞 0 评论 1193 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x[10],i,min,j,temp; for(i=0;i<10;i++) { …… 题解列表 2017年10月05日 0 点赞 0 评论 823 浏览 评分:0.0