2720 英文自我介绍

risnotl / 2024-11-13 / 原文

#include <iostream>
using namespace std;
int main() {

	//输出 cout
	//输出运算符 <<
	//换行 endl

	//注意不是打自己的名字噢 
	cout<<"My name is Tong Tong."<<endl;
	cout<<"I am 9 years old."<<endl;

	return 0;
}