三角形 (C++代码)递推 摘要:#include<iostream> using namespace std; int T , n , A[100][100],d[100][100]; int main(void){ …… 题解列表 2017年10月04日 0 点赞 0 评论 1074 浏览 评分:0.0
三角形 (C++代码)递归(存在大量重复计算,容易出现时间超限) 摘要:#include<iostream> using namespace std; int T , n , A[100][100]; int solve(int i,int j){ …… 题解列表 2017年10月04日 0 点赞 0 评论 1172 浏览 评分:9.9
三角形 (C++代码)记忆化搜索 摘要://记忆化搜索 #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespa…… 题解列表 2017年10月04日 2 点赞 0 评论 1485 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int f; float c; …… 题解列表 2017年10月04日 0 点赞 0 评论 893 浏览 评分: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语言程序设计教程(第三版)课后习题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 评论 1004 浏览 评分: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 评论 1276 浏览 评分:9.9
printf基础练习2 (C语言代码) 摘要:解题思路:看看题解确实挺好的注意事项:参考代码:#include<stdio.h>int main(){int a;scanf("%d",&a);//这里不需要换行吧?/nprintf("%#o …… 题解列表 2017年10月03日 0 点赞 0 评论 937 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:根据刚学的scanf进行使用注意事项:题目只求China的密码,当该值无任何输入时,以输出内容为准,而且若不输入&,系统会崩溃,%c用来输入字符型参考代码:#include<stdio.h>…… 题解列表 2017年10月03日 6 点赞 3 评论 954 浏览 评分:0.0