package basico;
class tres{
public static void main(String[]args){
int x = 13;
System.out.println("");
while (x!= 1){
System.out.print(x+">");
if(x% 2 == 0){
x = x / 2;
}else{
x = ((3*x)+1);
}
}
}
}
fiz no eclipse e esta dando erro