符号变量的使用

来源:互联网 发布:zeroc ice python 编辑:程序博客网 时间:2024/04/19 08:25
#include <stdio.h>#include <stdlib.h>#define HONG 30 /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) {int changliang,ji;changliang=8;ji=changliang*HONG;printf("积是%d",ji); return 0;}