题解列表

筛选

zb-字符串插入-C++

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){    string s,t;    c……

日期排序 (Java代码)

摘要:import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; public clas……

1229: 最小公倍数

摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split()) def get(a,b):     if a%b==0:         return b      e……

1232: 查找最大元素

摘要:解题思路:注意事项:参考代码:while True: try: a=input() s=max(a) str=&#39;&#39; for i in a:     if i!=s:   ……