本人第一次发文章,请大师多多指教(◕‿◕)
c++的注释有两种:
第一种:
//
如:
#include<bits/stdc++.h>
using namespace std;
int main()
{
//声明
int a;
//输出
cout<<a;
}
第二种:
/*
*/
如:
#include<bits/stdc++.h>
using namespace std;
int main()
{
/*
声明
*/
int a;
/*
输出
*/
cout<<a;
}