题解列表
Tom数(C++简单)
摘要:解题思路:注意事项:2^32数很大,int 存不下,可以用long long;参考代码:#include<iostream>
using namespace std;
#include<cmath……
财务管理(c++通俗易懂)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int i; doubl……
亲和数(超简单C++)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int f(int n) //求约数和
{
int i,s=0……
自己写的c++最暴力版
摘要:参考代码:#include<iostream>#include<string>using namespace std;int n;int main(){ cin>>n; int a=65; strin……
利用sort巧妙解。
摘要:解题思路: 利用sort解题注意事项: 注意sort的用法参考代码:#include<bits/stdc++.h>
using namespace std;
typedef struc……