摘要:
//最小生成树Prim算法 #include <iostream> #include <cstring> using namespace std; const int INF=0x7fffffff/2; int vst[505]; int d[505]; int g[505][505], n, m, 阅读全文
摘要:
1.日期(CSP-S2019江西专场) 我感觉这道题应该放在CSP-J 分析:if条件语句 #include<bits/stdc++.h> using namespace std; char ch; int a,c; int ans=0; int main(){ cin>>a>>ch>>c; if( 阅读全文
摘要:
题目: https://www.luogu.com.cn/problem/P5703 分析:略 上代码: #include<bits/stdc++.h> using namespace std; int a,b; int main() { cin>>a>>b; cout<<a*b<<endl; re 阅读全文