All pastes #2103873 Raw Edit

Something

public text v1 · immutable
#2103873 ·published 2012-01-18 18:59 UTC
rendered paste body
import java.util.Scanner;
class scannerx {
    public static void main(String args[]){
	    Scanner work = new Scanner(System.in);
		Scanner work2 = new Scanner(System.in);
		String input;
		double i;
		double x = 2.2;
		double y;
		System.out.println("please type in a number");
		i = work.nextInt();
		System.out.println("please type in weight mesurement(lb or kg)");
		input = work2.nextLine();
		if (input.equals("lb")) {
		    y = i * x;
			System.out.println(y + "kg");
		} else {
		    y = i / x;
			System.out.println(y + "lb");
	    }
    }
}