
public class IfTest {

	public static void main(String[] args) {
		double test = -3.14159;
		if(test > 100.0 && test < 200.0) 
			test = test - 100.0;
		return;
	}
	
}
