当前位置:网站首页>C语言日记 3 常量

C语言日记 3 常量

2022-08-02 14:03:00 宇 -Yu

转义字符:一种特殊的字符常量,用来表示一些不可见字符

有关于常量变量的定义,这里不再赘述。我们只要知道: 不给他
数据有常量和变量组成。
在程序运行过程中,常量的值不能变,变量的值可以变。

\r表示回车:
#include<iostream>
using namespace std;
int main()
{
    cout << "zhe\rshi\nyi\ndao\nqian\ndao\nti";
}

 #include<iostream>
using namespace std;
int main()
{
    cout << "zhe\r";
}

 \\表示字符'\',\"表示双引号,\'表示单引号。ASCII字符常量占用1字节。

#include<iostream>
using namespace std;
int main()
{
    cout << "zhe\\";
}

符号常量

三种声明形式,例:

1:

#include<iostream>
using namespace std;
int main()
{
    const int A=5;
    cout << A;
}

2:

#include<iostream>
using namespace std;
int main()
{
    int const A = 5;
    cout << A;
}
 

3:

#include<iostream>
using namespace std;
#define A 5
int main()
{
    cout << A;
}

or like

#include<iostream>
using namespace std;
#define A 5
int main()
{
    int c = 5, Y;
    Y = c * A;
    cout << Y;
}

在手打该project代码中遇到的问题:

 #include<iostream>
using namespace std;
#define A=5   //这里输入=错了,不符合格式
int main()
{
    cout << A;
}

书P21例2-2:

#include <iostream>
using namespace std;
void main()
{
    int num, total;

    const int PRICE = 30; num = 10;

    total = num * PRICE;

    cout << "total=" << total << endl;
}

#include <iostream>

 using namespace std;

#define PRICE 30

void main()

{

int num,total;num=10;

total=num* PRICE;

cout<<"total="<<total<<endl;

}

 要注意的是,符号常量与变量不同,它的值在其作用域内不能改变,也不能再被赋值。

使用符号常量的好处是含义清楚,且能做到“一改全改”

原网站

版权声明
本文为[宇 -Yu]所创,转载请带上原文链接,感谢
https://blog.csdn.net/Zz_zzzzzzz__/article/details/125781365