n tam
ədədi verilmişdir. Onun müsbət, mənfi və ya 0-a
bərabər olmasını müəyyənləşdirin.
Giriş. Modulca 109-u
aşmayan tam n ədədi.
Çıxış. n-in qiymətindən asılı
olaraq “Positive”, “Negative” və ya “Zero” çap edin.
Nümunə
giriş 1 |
Nümunə
çıxış 1 |
45 |
Positive |
|
|
Nümunə
giriş 2 |
Nümunə
çıxış 2 |
0 |
Zero |
şərti ifadə
Use the conditional statement to solve the problem. Since -1000 ≤ x ≤ 1000, int type is enough to use.
Alqoritmin
reallaşdırılması
Read the input value of x.
scanf("%d",
&x);
Find the value of y.
if (x < 5)
y = x * x – 3 * x + 4;
else
y = x + 7;
Print the result.
printf("%d\n",y);
Algorithm reallaşdırılması – ternary
operator
#include <stdio.h>
int x, y;
int main(void)
{
scanf("%d",
&x);
y = (x < 5) ? x * x – 3 * x + 4 : x + 7;
printf("%d\n",y);
return 0;
}
Java reallaşdırılması
import java.util.*;
public class Main
{
public static void main(String[] args)
{
Scanner con = new Scanner(System.in);
int y, x = con.nextInt();
if (x < 5)
y = x*x - 3*x + 4;
else
y = x + 7;
System.out.println(y);
con.close();
}
}
Python reallaşdırılması
x = int(input())
if x < 5:
y = x*x - 3*x + 4
else:
y = x + 7
print(y)
Go reallaşdırılması
package main
import "fmt"
func main() {
var x,
y int
fmt.Scanf("%d",&x)
if x
< 5 {
y = x*x - 3*x + 4
} else
{
y = x + 7
}
fmt.Println(y)
}
C# reallaşdırılması
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleAppCSharp
{
class Program
{
static void Main(string[] args)
{
int x, y;
x =
Convert.ToInt32(Console.ReadLine());
if (x >= 5)
y = x + 7;
else
y = x * x
- 3 * x + 4;
Console.WriteLine("{0}", y);
}
}
}