题解列表

筛选

汪汪剪指甲 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,m;char s[16][16];int b[16][16];int flag;void dfs(int x,int y){……

P1044 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){     int n;     scanf("%d",&n);     int m[n][n];   ……

P1047 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<memory.h> using namespace std; char……

P1051 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; const int maxn = 320; int f[maxn][max……

C二级辅导-进制转换 (C语言代码)

摘要:解题思路:printf函数输出本身就可以实现进制转换。%o为八进制,%d为十进制,%x为十六进制。注意事项:莫忘取地址符参考代码:#include<stdio.h>int main(){    int……