题解列表

筛选

1229: 最小公倍数

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

日期排序 (Java代码)

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

zb-字符串插入-C++

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