Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit 88d6f53

Browse files
authored
Add files via upload
1 parent 71945b1 commit 88d6f53

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed
949 Bytes
Binary file not shown.
585 Bytes
Binary file not shown.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import java.io.*;
2+
import java.util.*;
3+
public class barn1 {
4+
5+
public static void main(String[] args) throws IOException{
6+
7+
// TODO Auto-generated method stub
8+
BufferedReader f=new BufferedReader(new FileReader("barn1.in"));
9+
StringTokenizer st=new StringTokenizer(f.readLine());
10+
int x=Integer.parseInt(st.nextToken());
11+
int y=Integer.parseInt(st.nextToken());
12+
int z=Integer.parseInt(st.nextToken());
13+
int[] stalls=new int[y];
14+
}
15+
16+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import java.io.*;
2+
public class javatest {
3+
4+
public static void main(String[] args) throws IOException{
5+
// TODO Auto-generated method stub
6+
System.out.println("Java is working! Yay!");
7+
}
8+
9+
}

0 commit comments

Comments
 (0)