文章分类 - 真题
摘要:L1 L1-089 思路 直接输出即可 代码 #include <bits/stdc++.h> using namespace std; int main() { cout << "Good code is its own best documentation."; return 0; } L1-0
阅读全文
摘要:A 九进制转十进制 思路 简单进制转化 代码 #include <bits/stdc++.h> using namespace std; int n = 2022; int sum = 0; int t = 0; int main() { while (n > 0) { sum += pow(9,
阅读全文

浙公网安备 33010602011771号