mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 15:38:47 +00:00
608. 差
https://www.acwing.com/problem/content/submission/code_detail/6847391/
This commit is contained in:
parent
f33a4c27a6
commit
ceb66a4db8
10
AcWing/608/608.cpp
Normal file
10
AcWing/608/608.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
int a, b, c, d;
|
||||||
|
cin >> a >> b >> c >> d;
|
||||||
|
cout << "DIFERENCA = " << (a * b - c * d) << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user