数据类型 运算符表达式

1. 常量:在程序运行的过程中,其值不能被改变的量称为常量

    常量的分类和不同类型常量的表达:        

  

 

 

代码:

#define  PRICE 40
#include   <stdio.h>
void main()
{
  int num, total;
  num = 10;
  total = num*PRICE;
  printf("total=%d\n", total);
  getchar();
}

 

变量

定义:

 

变量的命名:

 

 

变量的分类

 

 

posted @ 2018-01-06 23:08  1点  阅读(137)  评论(0编辑  收藏  举报