题解列表

筛选

Minesweeper (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int row,col,field=0; int i,j,k,l,i1,j1……

小O的乘积 (C语言代码)

摘要:解题思路:    此题因为涉及到的数字范围为-10000~10000,不用两重for循环暴力算法来解决,太费时,无法实现,将数乘积的选择用条件语句来进行选择 将极大程度地降低运算时间。注意事项:   ……