Skip to content

Instantly share code, notes, and snippets.

View Owenleo778's full-sized avatar

Owen Salvage Owenleo778

  • Brighton
View GitHub Profile
@Owenleo778
Owenleo778 / NameFinder.java
Created October 4, 2017 21:33
The first week's challenge for Space Cadets - finding the name of someone based off of their ID
import java.io.*;
import java.net.URL;
public class NameFinder {
public static void main(String[] args) throws Exception {
String iD;
String name = "";
String currentLine;