蛇形填数 (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 评论 1280 浏览 评分: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 评论 1345 浏览 评分: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 评论 1631 浏览 评分:0.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 评论 720 浏览 评分:0.0
P1044 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n; scanf("%d",&n); int m[n][n]; …… 题解列表 2018年02月23日 9 点赞 0 评论 1094 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ float a,b,c,d,x1,x2; scanf("%f%f%f",&a…… 题解列表 2018年02月23日 0 点赞 0 评论 878 浏览 评分:0.0
P1047 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<memory.h> using namespace std; char…… 题解列表 2018年02月23日 1 点赞 0 评论 1122 浏览 评分:0.0
P1051 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; const int maxn = 320; int f[maxn][max…… 题解列表 2018年02月23日 0 点赞 0 评论 933 浏览 评分:0.0
数据结构-有序线性表的有序合并 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>struct node{…… 题解列表 2018年02月23日 0 点赞 0 评论 1282 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.10 (C语言代码) 摘要:解题思路:写的很迷。。。。注意事项:参考代码:#include<stdio.h>int main(){ int N,x=1,y=1,i,sum=1; scanf("%d",&N); …… 题解列表 2018年02月23日 0 点赞 0 评论 717 浏览 评分:0.0