第一次学C++ 2023年2月16日 | 编程 跟着新加入的信息社团第一次学习 C++编程。 学会了用cout输出信息。跟 python 的print()功能相似。 1 2 3 4 5 6 7 8 9 #include <iostream> using namespace std; int main() { cout << "Hello"; return 0; }…… 阅读全文