题解列表

筛选

用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;}……

蓝桥杯算法训练VIP-友好数

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

最直观的解题思路

摘要:### 不要想的太复杂,年轻人! ```c #include int main(void) { int temp,max = -214570227; while(1) ……