双引号不是英文的?
#include <stdio.h> #define PRICE 20 int main() { int num, total; num = 10; total = num * PRICE; printf("总价格为:%d\n", total); return 0; }