-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDay_12_csgo.java
More file actions
40 lines (29 loc) · 986 Bytes
/
Copy pathDay_12_csgo.java
File metadata and controls
40 lines (29 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package Programing.Section4;
import java.util.*;
public class Day_12_csgo {
public static void main(String[] args) {
System.out.println("Enter username :");
Scanner sc= new Scanner(System.in);
String username= sc.nextLine();
boolean off = false;
csgo( off );
csgo (true, username);
}
public static void csgo(boolean off) {
System.out.println("Connecting with server (bom via~ 23).");
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
public static int csgo(boolean on, String username){
System.out.println("Welcome back Agent "+username +", we hope u r doing pretty well. :) ");
return -1;
}
}
// boolean on = true;
// int kills,assist,deaths;
// byte years_of_experience;
// int profile_name;
// String name=username;