Untitled

Anonymous
plain_text
12/01/2023 2:23 PM
276 B
15
Indexable
        int seat = 18;
		if(seat%6==0 ||seat%6==1){
			System.out.println("window");
		}else if(seat%3==0 || seat%3==1){
			System.out.println("aisle");
		}else{
			System.out.println("middle");
		}
Editor is loading...
Leave a Comment