Skip to content

Commit c6d13bd

Browse files
Create scanner.java
1 parent 1cd6126 commit c6d13bd

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Java/scanner.java

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import java.util.*;
2+
3+
public class Solution {
4+
5+
public static void main(String[] args) {
6+
Scanner scan = new Scanner(System.in);
7+
int a = scan.nextInt();
8+
int b = scan.nextInt();
9+
int c = scan.nextInt();
10+
// Complete this line
11+
// Complete this line
12+
13+
System.out.println(a);
14+
System.out.println(b);
15+
System.out.println(c);
16+
// Complete this line
17+
// Complete this line
18+
}
19+
}

0 commit comments

Comments
 (0)