渣渣终于会一道题了,写个题解庆祝下 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>struct node{…… 题解列表 2018年02月23日 1 点赞 0 评论 1305 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,i=0; float M,x=0,y=0; scanf("%f %d",&M,&N…… 题解列表 2018年02月23日 0 点赞 0 评论 822 浏览 评分:0.0
汪汪剪指甲 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,m;char s[16][16];int b[16][16];int flag;void dfs(int x,int y){…… 题解列表 2018年02月23日 0 点赞 0 评论 1726 浏览 评分:0.0
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)逐位相加 摘要:解题思路:逐位相加。注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,m,i,a; long int s=0; scanf("%…… 题解列表 2018年02月23日 0 点赞 0 评论 1435 浏览 评分:0.0
蛇形填数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n;int b[101][101];int main(){ int i,j,t; int x,y; while(scanf("%…… 题解列表 2018年02月23日 1 点赞 0 评论 1504 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void ios(int m,int n){ int t,h,a; if(m>n) { t=m; m=n; n=t; } h=m…… 题解列表 2018年02月23日 0 点赞 0 评论 1014 浏览 评分:0.0
矩形的福利 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int g,c; int kong; int i,j,k,l; while(scanf("%d%d",&g,&c…… 题解列表 2018年02月23日 0 点赞 0 评论 1149 浏览 评分:0.0
P1035 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<cstring> int n,m; int x[4]={0,0,1,-1}; int y[4]…… 题解列表 2018年02月23日 0 点赞 0 评论 1318 浏览 评分:5.0
P1033 (C++代码) 摘要:解题思路:注意事项:参考代码:唯一题解:#include<iostream> #include<cstdio> #include<cstring> #include<stack> #inclu…… 题解列表 2018年02月23日 1 点赞 0 评论 1144 浏览 评分:6.0
P1024 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; const int maxn …… 题解列表 2018年02月23日 1 点赞 0 评论 1091 浏览 评分:0.0