Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

135 changes: 0 additions & 135 deletions README.md

This file was deleted.

Binary file added Screenshot 2024-02-25 052010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions Task2AliAlzahrani.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import java.util.Scanner;

public class task2 {
public static void main(String[]args){

Scanner scan= new Scanner(System.in);
System.out.println(":::,\r\n" + //
" '::::'._\r\n" + //
" '. '. __.,,.\r\n" + //
" '. '. _..-'''':::\"\r\n" + //
" \\ \\,.--\"\"\"\"--.,-'' _:'\r\n" + //
" /\\ \\ . . .-'\r\n" + //
" / \\ \\ ':'\r\n" + //
" / \\ : :\r\n" + //
"/ \\: :\r\n" + //
"\\ : :\r\n" + //
" \\ : ,--, ,-, :\r\n" + //
" \\ : |(_):| |():| :\r\n" + //
" \\ : __'--' __ '-'_ :\r\n" + //
" \\ : / \\ \\/ / \\ :\r\n" + //
" \\ : ( ) \\_/ :\r\n" + //
" .-'' . : \\__/ '--''--' :\r\n" + //
" \\ . .-:'. .:\r\n" + //
" \\' :| : '-.__ ___...-' :\r\n" + //
" \\::|: '''''' '.\r\n" + //
" .,:::': : '.\r\n" + //
" \\::\\: : '._\r\n" + //
" \\:: : / '-._ '.\r\n" + //
" \\: : / . :-._ :-'\r\n" + //
" : : / : : ''\r\n" + //
" : .' )'. : :\r\n" + //
" sjw : : .' '. : :\r\n" + //
" : '..' : _.' _.:\r\n" + //
" '._ :..---'\\''' _)\r\n" + //
" '':---''_) '-'-'\r\n" + //
" '-'-' PIKACHU! IS ASKING FOR THE FIRST VALUE TO FIND THE MAX");
int value1=scan.nextInt();
System.out.println("PIKACHU! IS ASKING FOR THE SECOND VALUE");
int value2 = scan.nextInt();

if(value1>value2){
System.out.println(value1+" IS BIGGER THAN "+value2);

}
else if(value2>value1){
System.out.println(value2+" IS BIGGER THAN "+value1);
}
else {
System.out.println("THEY ARE EQUAL !");
}



}

}
Binary file removed bin/App.class
Binary file not shown.
5 changes: 0 additions & 5 deletions src/App.java

This file was deleted.