题解列表

筛选

假币问题 (C++代码)

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

内码对称 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; int a[32]; int main() ……

检查金币 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; w……
优质题解

C二级辅导-计负均正 (C语言代码)

摘要:解题思路:    1.因为需要输入20个数,所以需要定义一个数组;    2.输入的数据有两种状态需要判断,所以可用if_else语句注意事项:    1.数组用for循环输入    2.注意是有一个……