题解列表

筛选

python 2806: 人口增长问题

摘要:参考代码:x, n = map(int, input().split()) for _ in range(n):     x += x * 0.001 print("%.4f" %x)……

java--study||O.o

摘要:参考代码:import java.util.Scanner;   public class Main {   public static void main(String[] args)   ……

表达式括号匹配:c++

摘要:#### 原题链接 [题目 3071: 表达式括号匹配(stack)](https://www.dotcpp.com/oj/problem3071.html?sid=15741963&lang=1#……

后缀表达式的值:c++

摘要:#### 原题链接 [题目 3070: 信息学奥赛一本通T1331-后缀表达式的值](https://www.dotcpp.com/oj/problem3070.html "题目 3070: 信息学……

判断是否为两位数

摘要:解题思路:注意事项:参考代码:n=int(input())if 10<=n<=99:    print(1)else:    print(0)……