摘要: #include <iostream> #include <cmath> using namespace std; #define SIZE 2001 #define base 3 #define multiple 2 char p[SIZE][SIZE]; void universe(int n, 阅读全文
posted @ 2023-04-01 17:56 刘海烽 阅读(77) 评论(0) 推荐(0)
摘要: #include <iostream> #include<vector> using namespace std; int main() { vector<int>a; int n; while (cin >> n) { if (n == 0)break; int sum = 0; int i = 阅读全文
posted @ 2023-04-01 17:48 刘海烽 阅读(136) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int cube[105][105]; int main() { int n; cin >> n; for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) 阅读全文
posted @ 2023-04-01 17:27 刘海烽 阅读(20) 评论(0) 推荐(0)