Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 633 Bytes

1.1_注释.md

File metadata and controls

31 lines (22 loc) · 633 Bytes
  • 单行注释: //

  • 多行注释:/* */

#include<iostream>

using namespace std;

int main() {

	//单行注释

	/*多行
	注释,输出 hello C++*/

	cout << "hello C++" << endl;

	system("pause");

	return 0;
}