汪汪剪指甲 (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 评论 1670 浏览 评分: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 评论 1379 浏览 评分: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 评论 1355 浏览 评分: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 评论 888 浏览 评分: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 评论 1041 浏览 评分: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 评论 1119 浏览 评分:5.0
P1033 (C++代码) 摘要:解题思路:注意事项:参考代码:唯一题解:#include<iostream> #include<cstdio> #include<cstring> #include<stack> #inclu…… 题解列表 2018年02月23日 1 点赞 0 评论 1038 浏览 评分:6.0
P1024 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; const int maxn …… 题解列表 2018年02月23日 1 点赞 0 评论 1039 浏览 评分:0.0
我要送人头! (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 评论 1199 浏览 评分:0.0
战士的神盾 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t,n; int i,j,k,l; int kong,xing; scanf("%d",&t); whi…… 题解列表 2018年02月23日 0 点赞 0 评论 1079 浏览 评分:0.0