题解列表
模拟-----------------------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; &nb……
c++信使(msner)floyd
摘要:```cpp#include using namespace std;const int INF=0x3f3f3f3f;int days=0;int dp[105][105……
欧几里得算法--------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int gcd(int a, int b){ retur……
C++简单写法--------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int b[20];int main(){ int a ……
C++简单写法--------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for (int i = 10;……
C++简单写法--------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ float a; &……
C++简单写法--------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool is_leap(int year){ if (……
C++简单写法--------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ &n……
C++简单写法--------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void swap_num(int *a, int *b){ &nbs……