本文主要是介绍C++学习第一课,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.代码注释
多行注释与单行注释
/*Program that greets the user.
Written by jxs , Assignment 1, July. 3, 2021
Input: the name of the user
Output : a personalized greeting
-----------------------------------------------*/ //多行注释示例以及单行注释
#include
#include
using namespace std;
int main()
{
cout << " Your first name is : ";
string firstName;
cin >> firstName;
cout << "\n Welcome to be there, " << firstName <<"!\n";
system("pause");
return 0;
}
`
2.常量的定义
1)#define 字符 字符串
2)const 数据类型 标识符 =(表示赋值) 字符串
示例:
#include
using namespace std;
#define day 7 //这里一定不要加分号!#define 标识符 字符串
int main()
{
cout << "一周一共有 " << day << "天"<
这篇关于C++学习第一课的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!