All pastes #2103869 Raw Edit

Something

public text v1 · immutable
#2103869 ·published 2012-01-18 18:47 UTC
rendered paste body
System.out.println("please type in a number");
		i = work.nextInt();
		System.out.println("please type in weight mesurement(lb or kg)");
		input = work.nextLine();
		if (input.equals("lb")) {
		    y = i * x;
			System.out.println(y + "kg");
		} else {
		    y = i / x;
			System.out.println(y + "lb");