Skip to content

Instantly share code, notes, and snippets.

@BornRiot
BornRiot / gist:7652831
Created November 26, 2013 02:59
A simple example of a switch statement.
package ch5;
//A simple example of the switch.
public class SampleSwitch {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int i=0; i<6; i++)
switch(i) {
case 0:
System.out.println("i is zero.");
@BornRiot
BornRiot / Age.java
Created November 22, 2013 20:21
Progrma that asks to calculate the age of somone
/**
*
*/
package practice;
import java.io.*;
/**
* @author Administrator
*