为什么按教程打的文件不能运行啊?
#include<stdio.h>#define PRICE 30;
void main()
{
int num, total;
num = 10;
total = num*PRICE;
printy("total = %d\n", total);
}
按甲鱼的打了可是为什么有这个?
123.exe - 1 error(s), 0 warning(s)
#include<stdio.h>
#define PRICE 30;
void main()
{
int num, total;
num = 10;
total = num*PRICE;
printy("total = %d\n", total);
}
printf("total = %d\n", total);
学习,支持一下!加油
学习,支持一下!加油 学习,支持一下!加油 bnxf 发表于 2013-9-26 14:38 static/image/common/back.gif
#include
#define PRICE 30;
谢谢了
大意了啊 #define PRICE 30;
#define 后面没有 ";"分号吧还有你的printf打印输出错了哦
页:
[1]