Skip to content

Instantly share code, notes, and snippets.

View kevinbryantlou's full-sized avatar

Kevin Lou kevinbryantlou

View GitHub Profile
@kevinbryantlou
kevinbryantlou / Year Calculator
Created February 21, 2015 06:55
Intro Java Course
import java.util.Scanner;
public class Ch1_PP4
{
public static void main(String[]args)
{
int yob, age, endyear;
Scanner keyboard = new Scanner(System.in);
System.out.println("Enter what year you were born, and how many years to add");