读取四个整数 A,B,C,D,并计算 (A×B−C×D)的值。
#include<iostream> int main() { int a,b,c,d; std::cin>>a>>b>>c>>d; std::cout<<"DIFERENCA = "<<(a*b-c*d); return 0; }