题解列表
2815: 求特殊自然数(python)
摘要:解题思路:注意事项:参考代码:for a in range(1,7):
for b in range(0,7):
for c in range(1,7):
……
2990:python十进制到八进制(超级简单两行!!!)
摘要: n = int(input())
// 只用了两行,直接发布题解c语言网不让。
// 这系统嫌我太简洁。
// 真服了。
// 只能多几行废话了。
// 凑活看吧。
……
1654: 蓝桥杯算法训练VIP-确定元音字母位置(超级简洁)(超级易懂)新手也适合看
摘要: import java.util.*;
public class 确定元音字母位置 {
public static void main(String[] args) {
Scanner……
1332: 津津的储蓄计划(python)
摘要:解题思路:注意事项:参考代码:m = 0
x = 0
month = 1
isTrue = True
while True:
try:
n = int(input(……
scanf和gets的混合使用
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[1001]; int n; scanf("%d",&n);//scanf结束回车……
编写题解 1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split(" ")))b = int(input())b = b+30count = 0for i in range……
最最最简单的一种方法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3]; int i,j; //int t; for(i=0;i<3;i……
不与最大数相同的数字之和
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[100],i,r; int max; int sum=0; scanf("%d",&n); ……