题解列表

筛选

C++实现模拟计算器

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

C++宏定义闰年判断

摘要:解题思路:闰年:能被4但不能被100整除 或 能被400整除注意事项:宏定义换行要用\参考代码:#include<iostream>using name……

c++十分简单实现代码,十分通俗易懂

摘要:解题思路:直接看注释即可,十分通俗易懂。注意事项:注意边界问题处理和逻辑判断。参考代码:#include<bits/stdc++.h>using namespace std;int mai……

冶炼金属C++

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