题解列表

筛选

BREEZE------之你猜 有没有小技巧系列(用的C)

摘要:什么数为素数应该不用我讲了吧!(敲黑板!)该程序属于简单解了,注意一下单一的result这样子可以方便修改,只需改一次就可以了(如果要修改的话)小技巧时间!    判断一个数为素数只要判断到他的平方根……

敲七游戏 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int xt(int x); // 判断数据中是否含7int main(){ int n, i, t = 0; scanf("%d",……

杨辉三角 (C语言代码)

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