题目简单,注意输出格式即可。
#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; }