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

Commit 71945b1

Browse files
authored
Add files via upload
1 parent 4164694 commit 71945b1

18 files changed

+724
-0
lines changed

Debug/bin/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Java
2+
DON'T use download
3+
USE RELEASES

Debug/bin/SimpleSorter.class

379 Bytes
Binary file not shown.

Debug/bin/Sorter.class

230 Bytes
Binary file not shown.

Debug/bin/Var.class

585 Bytes
Binary file not shown.

Debug/bin/debuggableapp.class

2.96 KB
Binary file not shown.

Debug/bin/sorts.class

240 Bytes
Binary file not shown.

Debug/bin/usaco.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<html>
2+
<head>
3+
<title>USACO raw templates</title>
4+
<link rel="stylesheet" href="https://javaarchive.github.io/Programwebpages/theme.css">
5+
<style>
6+
footer {
7+
display: block;
8+
}
9+
</style>
10+
</head>
11+
<body>
12+
<div class="content">
13+
<h1>Welcome random people</h1>
14+
<p>This is a site for USACO starter templates. This site has also been optimized to save bandwith on slow networks.</p>
15+
<h1><a id="download"> You'll need eclipse.</h1>
16+
<h2>Downloads</h2>
17+
<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>
18+
<code class="language-java">
19+
20+
21+
22+
/*
23+
TASK:
24+
ID:
25+
LANG:JAVA
26+
PROG:
27+
*/
28+
//MINIMAL CODE
29+
import java.io.*;
30+
import java.util.*;
31+
public class example {
32+
public static void main(String[] args) throws IOException {
33+
BufferedReader f=new BufferedReader(new FileReader("project.in"));
34+
PrintWriter pw=new PrintWriter(new BufferedWriter(new FileWriter("project.out")));
35+
pw.close();
36+
f.close();
37+
}
38+
39+
}
40+
</code>
41+
42+
43+
<h1>CHECK OUT usacotools.java</h1>
44+
</div>
45+
</body>
46+
<footer>
47+
<h1> By the person who got pass the high cards silver problem</h1>
48+
<p> Not to brag</p>
49+
</footer>
50+
</html>

Debug/bin/usacotools$dp.class

1.06 KB
Binary file not shown.

Debug/bin/usacotools.class

12.7 KB
Binary file not shown.

Debug/src/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Java
2+
DON'T use download
3+
USE RELEASES

0 commit comments

Comments
 (0)