题解列表

筛选

笨小猴(C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    char a[100];    int i,j;;    int w;    int b[200]={0}……

用for循环解

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(void){ int a, b, sum=0; scanf("%d",&a……

编写题解 1395: 倒数第二 Python

摘要:解题思路:sort函数注意事项:很简单好吧,不需要注意参考代码:C=int(input())while C!=0:    n=int(input())    if n>=2 and n<=10:   ……

题解1096:Minesweeper

摘要:# 1096: Minesweeper ## 知识点 ### 知识点1:无限循环输入,知道输入两个0的时候结束 我这里使用的方法是,用`times`变量进行计数,使用`for`循环。……

2755: 类型转换

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("D C\n"); return 0;}……