题解列表

筛选

花落的新手算法 (C语言代码)

摘要:解题思路:注意事项:C语言无法删除已定义的数据。参考代码:#include<stdio.h>#define AUM(x,y) {int l;l=x;x=y;y=l;}  //宏定义,交换数据,因为C语……

回文数(一) (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(void){ int i, j, l, k, m, x, y, z, h, gao……

检查金币 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(void){ int num[10]; int i, j, k, l, q, w,……

马拦过河卒 (C语言代码)

摘要:解题思路:用递归遍历每一种情况,并且根据马的位置去掉不能走过的点注意事项:参考代码:#include <stdio.h>int computer(int x1, int y1, int x, int ……