题解列表

筛选

编写题解 1995: 画三角形

```pythonwhileTrue:n=int(input())foriinrange(1,n+1):print(('/\\'*i).center(2*n,""))```———————————————————————————————

最大车牌——(非常简单的解法)

什么都不用说了,因为太简单了c++直接来一个sort```c++#includeusingnamespacestd;intmain(){intn;cin>>n;vectorcars;for(inti=0;i>car;cars.push_back(car);}sort(cars.begin(),

python-倍数问题

摘要:解题思路:注意事项:参考代码:from cmath import inf                 n,k = map(int,input().strip().split())     ……