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

Commit e363ec7

Browse files
committed
...
1 parent 88cfdca commit e363ec7

File tree

1 file changed

+18
-37
lines changed

1 file changed

+18
-37
lines changed

usaco.html

Lines changed: 18 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,31 @@
11
<html>
22
<head>
3-
<title>USACO raw templates</title>
4-
<link rel="stylesheet" href="https://javaarchive.github.io/Programwebpages/theme.css">
5-
<style>
6-
footer {
3+
<title>USACO raw templates</title>
4+
<link href="https://javaarchive.github.io/Programwebpages/theme.css" rel="stylesheet" />
5+
<style type="text/css">footer {
76
display: block;
87
}
9-
</style>
8+
</style>
109
</head>
1110
<body>
1211
<div class="content">
1312
<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">
1913

14+
<p>This is a site for USACO starter templates. This site has also been optimized to save bandwith on slow networks.</p>
2015

16+
<h1><a id="download">&nbsp;</a>Eclipse Downloads</h1>
17+
<a id="download"> </a>
2118

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-
}
19+
<h2><a id="download">Downloads</a></h2>
20+
<a id="download"> </a><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> <code class="language-java"> /* TASK: ID: LANG:JAVA PROG: */ //MINIMAL CODE import java.io.*; import java.util.*; public class example { public static void main(String[] args) throws IOException { BufferedReader f=new BufferedReader(new FileReader(&quot;project.in&quot;)); PrintWriter pw=new PrintWriter(new BufferedWriter(new FileWriter(&quot;project.out&quot;))); pw.close(); f.close(); } } </code>
3821

39-
}
40-
</code>
41-
42-
43-
<h1>CHECK OUT usacotools.java</h1>
44-
</div>
22+
<h1>CHECK OUT usacotools.java</h1>
23+
</div>
24+
25+
<footer>
26+
<h1>By a person who got pass a&nbsp;gold problem</h1>
27+
28+
<p>Not to brag</p>
29+
</footer>
4530
</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>
31+
</html>

0 commit comments

Comments
 (0)