Points:
100
Time limit:
1.0s
Memory limit:
640M
Input:
stdin
Output:
stdout
Viết chương trình nhập vào \(3\) số nguyên \(x, y\) và \(z\). Hay in ra màn hình giá trị biểu thức \((x − y) × z\).
Input
- Ba số nguyên \(x, y, z \ (x, y, z \leq 10^9)\), mỗi số trên \(1\) dòng.
Output
- In ra số nguyên là đáp án.
Example
Test 1
Input
10
1
3
Output
27
Comments
ez boi
x=int(input())
y=int(input())
z=int(input())
print((x-y)*z)
x=int(input())
y=int(input())
z=int(input())
print((x-y)*z)
x=int(input())
y=int(input())
z=int(input())
print((x-y)*z)
x=int(input())
y=int(input())
z=int(input())
print((x-y)*z)
code đây mn
a
chim
include<bits/stdc++>
using namespace std;
int main ()
{
long long x,y,z;
cin>>x>>y>>z;
cout<<(x-y)*z;
return 0;
}
C ++ nha mn
Bài này chắc phải dùng quy hoạch động, dfs, bfs thôi 😅
8 more comments