#include <stdio.h>
#include <iostream>
using namespace std;
//1. 单行注释 //
//2 多行注释 /*多行注释*/
//main是一个程序的入口,每个程序都必须有一个,有且只有一个
int main()
{
cout << "hello word" << endl; //为打印的内容
system("pause");
return 0;
}
10-06
715

11-21
645

04-17
480

05-22
4900
