CodeGym /Các khóa học /Cú pháp Java /Điều kiện từ hành tinh Pascal

Điều kiện từ hành tinh Pascal

Cú pháp Java
Mức độ , Bài học
Có sẵn

"Xin chào, Amigo. Trên hành tinh của chúng tôi, chúng tôi sử dụng Pascal, phiên bản cao cấp hơn. Đây là giao diện của Pascal."

pascal
If a < b Then
    WriteLn ('a is less than b');
Java
if (a < b)
    System.out.println("a is less than b");
pascal
If a < b Then
    WriteLn('a is less than b')
Else
    WriteLn('a is greater than b');
Java
if (a < b)
    System.out.println("a is less than b");
else
    System.out.println("a is greater than b");
pascal
If a < b Then
    Begin
        WriteLn('a is less than b');
        WriteLn('a is less than b');
    End
Else
    Begin
        WriteLn('a is greater than b');
        WriteLn('a is greater than b');
    End;
Java
if (a < b)
{
    System.out.println("a is less than b");
    System.out.println("a is less than b");
}
else
{
    System.out.println("a is greater than b");
    System.out.println("a is greater than b");
}

pascal
If a < b And a < c Then
    WriteLn('a is the minimum of a, b, c');
Java
if (a < b && a < c)
    System.out.println("a is the minimum of a, b, c");
pascal
If a < b Or a < c Then
    WriteLn('a is either less than b, or less than c');
Java
if (a < b || a < c)
    System.out.println("a is either less than b, or less than c");
pascal
If Not (a < b) Then
    WriteLn('b is less than or equal to a')
Else
    WriteLn('b is greater than a');
Java
if ( !(a < b) )
    System.out.println("b is less than or equal to a");
else
    System.out.println("b is greater than a");
pascal
If a < b Then
    Begin
       If a < c Then
            WriteLn('a is the minimum')
        Else
            WriteLn('c is the minimum');
    End
Else
    Begin
        If b < c Then
            WriteLn('b is the minimum')
        Else
            WriteLn('c is the minimum');
    End;
Java
if (a < b)
{
    if (a < c)
        System.out.println("a is the minimum");
    else
        System.out.println("c is the minimum");
}
else
{
    if (b < c)
        System.out.println("b is the minimum");
    else
        System.out.println("c is the minimum");
}
pascal
If a <= b And a <= c Then
    WriteLn('a is the minimum')
Else If b <= a And b <= c Then
    WriteLn('b is the minimum')
Else If c <= a And c <= b Then
    WriteLn('c is the minimum');
Java
if (a <= b && a <= c)
    System.out.println("a is the minimum");
else   if (b <= a && b <= c)
    System.out.println("b is the minimum");
else   if (c <= a && c <= b)
    System.out.println("c is the minimum");
Bình luận
TO VIEW ALL COMMENTS OR TO MAKE A COMMENT,
GO TO FULL VERSION