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

Commit a4a2971

Browse files
authored
Update usaco.html
1 parent 84ba867 commit a4a2971

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

usaco.html

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,31 @@ <h1><a id="download"> You need eclipse.</h1>
1515
<h2>Downloads</h2>
1616
<a href="http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/oxygen/1a/eclipse-java-oxygen-1a-win32.zip"> Eclipse windows 32 bit</a>
1717
<code class="language-java">
18+
19+
20+
1821
/*
19-
TASK:
22+
TASK:
2023
ID:
2124
LANG:JAVA
2225
PROG:
2326
*/
2427

25-
28+
 
2629
import java.io.*;
2730
import java.util.*;
28-
public class test {
29-
30-
public static void main(String[] args) {
31-
// TODO Auto-generated method stub
31+
public class beads {
3232

33+
public static void main(String[] args) throws IOException {
34+
BufferedReader f=new BufferedReader(new FileReader("project.in"));
35+
PrintWriter pw=new PrintWriter(new BufferedWriter(new FileWriter("project.out")));
36+
37+
38+
39+
40+
41+
pw.close();
42+
f.close();
3343
}
3444

3545
}

0 commit comments

Comments
 (0)