题解列表
判断一个数能否同时被3和5整除
摘要:解题思路:注意事项:参考代码:int main(){ int n = 0; scanf("%d", &n);……
[编程入门]自由下落的距离计算
摘要:解题思路:很简单注意事项:无参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){……
两集合的交集(sf5c)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1000……