题解列表

筛选

二级C语言-同因查找

摘要:解题思路:模拟注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main(){ for(int i=10;i<=……

二级C语言-公约公倍

摘要:解题思路:直接求注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; fo……

二级C语言-计负均正

摘要:解题思路:模拟注意事项:要用double参考代码:#include<bits/stdc++.h>using namespace std;long long a,fs;double zs,zh;int ……

1671: 小九九

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main(){ for(int i=1;i<=9;i……

1671: 小九九

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main(){ for(int i=1;i<=9;i……

1670: 拆分位数

摘要:解题思路:注意事项://合理运用%和/参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;lo……