printf基础练习2 (C语言代码) 摘要:解题思路:看看题解确实挺好的注意事项:参考代码:#include<stdio.h>int main(){int a;scanf("%d",&a);//这里不需要换行吧?/nprintf("%#o …… 题解列表 2017年10月03日 0 点赞 0 评论 935 浏览 评分:0.0
DNA (C语言描述,数据结构) 摘要:#include<stdio.h>#include<stdlib.h>typedef struct qfirst{ int x; int y; struct qfirst *next;}qfirst;…… 题解列表 2017年10月03日 1 点赞 0 评论 1274 浏览 评分:9.9
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 评论 1002 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){printf("hello world\n");return 0;}…… 题解列表 2017年10月04日 0 点赞 0 评论 771 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int f; float c; …… 题解列表 2017年10月04日 0 点赞 0 评论 892 浏览 评分:0.0
三角形 (C++代码)记忆化搜索 摘要://记忆化搜索 #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespa…… 题解列表 2017年10月04日 2 点赞 0 评论 1484 浏览 评分:6.0
三角形 (C++代码)递归(存在大量重复计算,容易出现时间超限) 摘要:#include<iostream> using namespace std; int T , n , A[100][100]; int solve(int i,int j){ …… 题解列表 2017年10月04日 0 点赞 0 评论 1169 浏览 评分:9.9
三角形 (C++代码)递推 摘要:#include<iostream> using namespace std; int T , n , A[100][100],d[100][100]; int main(void){ …… 题解列表 2017年10月04日 0 点赞 0 评论 1072 浏览 评分: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 评论 974 浏览 评分:0.0