摘要:
1: #include <bits/stdc++.h> using namespace std; int main() { int n = 10; double MAX, AVG = 0; cin >> AVG; MAX = AVG; for(int i = 1; i < n; i++){ doub 阅读全文
摘要:
1: #include <bits/stdc++.h> using namespace std; int main(){ for(int i = 300; i <= 500; i += 2){ if(i % 3 == 0 && i % 7 == 0) printf("%d\n", i); } ret 阅读全文
摘要:
1: #include <bits/stdc++.h> using namespace std; int n; int FFT(int n){ int k = 1; for(int i = 0; i < n; i++){ if(k >= n) return i; k *= 2; } } /* //方 阅读全文