01 创建Helloworld.cpp
#include <iostream>
using namespace std;
int main1()
{
cout << "Hello world" << endl;
system("pause");
return 0;
}
02 注释.cpp
#include <iostream>
using namespace std;
//单行注释
/**/多行注释
int main2()
{
//输出Hello world
cout << "Hello world" << endl;
system("pause");
return 0;
}
03 变量.cpp
#include <iostream>
using namespace std;
int main3()
{
int a = 10;
cout << "a = " << a << endl;
system("pause");
return 0;
}
04 常量.cpp
#include<iostream>
using namespace std;
/*常量的定义方式
1.#define 宏常量
2.const 修饰的变量
*/
#define day 7
int main4()
{
//day &