viết chương trình tính Z{X^2+2 nếu Z>=0 {X^2 -2 nếu Z<0
2 câu trả lời
#include<bits/stdc++.h>
using namespace std;
int main(){
int x,z;
cin>>x>>z;
if(z<0){
cout<<x*x-2;
}else{
cout<<x*x+2;
}
}
Python:
z = int(input())
x = int(input())
if z >= 0:
print(x ** 2 + 2)
else:
print(x ** 2 - 2)
C++:
#include <iostream>
using namespace std;
int main()
{
int z, x; cin >> z >> x;
if (z >= 0) cout << x * x + 2;
else cout << x * x - 2;
return 0;
}