有点粗心,一开始有一个X大小写搞错了
#include<stdio.h> int main() { int A,B,C,D,X; scanf("%d%d%d%d",&A,&B,&C,&D); X=A*B-C*D; printf("DIFERENCA = %d\n",X); return 0; }