摘要: 1 #include<iostream> 2 #include<vector> 3 #include<cmath> 4 5 using namespace std; 6 7 int main() 8 { 9 int M, N; 10 vector<int> prim; 11 cin >> M >> 阅读全文
posted @ 2020-01-10 16:24 Huayra 阅读(601) 评论(0) 推荐(0)
摘要: 1 #include<iostream> 2 #include<array> 3 #include<vector> 4 #include<algorithm> 5 6 using namespace std; 7 8 int main() 9 { 10 array<double, 5> a = {0 阅读全文
posted @ 2020-01-10 15:43 Huayra 阅读(346) 评论(0) 推荐(0)
摘要: 1 #include<iostream> 2 #include<string> 3 4 using namespace std; 5 6 int main() 7 { 8 long A, B, C; 9 int n; 10 cin >> n; 11 for (int i = 0; i != n; + 阅读全文
posted @ 2020-01-10 14:54 Huayra 阅读(600) 评论(0) 推荐(0)