注释
#include<iostream>
int main() {
//这是单行注释
/*
这
是
多
行
注释
*/
std::cout << "hello world" << std::endl;
return 0;
}
#include<iostream>
int main() {
//这是单行注释
/*
这
是
多
行
注释
*/
std::cout << "hello world" << std::endl;
return 0;
}