洛谷官方题单【入门】 2024-1-18 17:25 | 199 | 0 | 🎓 理工 【入门1】顺序结构 B2002 Hello,World! #include <bits/stdc++.h> using namespace std; int main() { cout << "Hello,World!" << endl; return 0; } B2025 输出字符菱形 #i…