我要送人头! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,k,l; int n; while(scanf("%d",&n)!=EOF) { k=n; …… 题解列表 2018年02月23日 0 点赞 0 评论 1151 浏览 评分:0.0
P1024 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; const int maxn …… 题解列表 2018年02月23日 1 点赞 0 评论 997 浏览 评分: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 评论 953 浏览 评分: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 评论 818 浏览 评分: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 评论 1253 浏览 评分: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 评论 1328 浏览 评分: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 评论 1611 浏览 评分: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 评论 704 浏览 评分:0.0
P1044 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n; scanf("%d",&n); int m[n][n]; …… 题解列表 2018年02月23日 9 点赞 0 评论 1067 浏览 评分: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 评论 852 浏览 评分:0.0