Again I have problem with the text, anyone knows the cause?
package pl.codegym.task.task06.task0606;
import java.io.*;
/*
Cyfry parzyste i nieparzyste
*/
public class Solution {
public static int parzyste;
public static int nieparzyste;
public static void main(String[] args) throws IOException {
BufferedReader buffer = new BufferedReader(new InputStreamReader(System.in));
int liczba = Integer.parseInt(buffer.readLine());
double i=0;
double zmienna = 0;
while(true){
if(liczba/(Math.pow(10, i))>1){
zmienna = (liczba % Math.pow(10, i+1))/Math.pow(10, i);
liczba -= liczba % Math.pow(10, i+1);
if (zmienna % 2 == 0 || zmienna == 0) {
Solution.parzyste++;
} else
Solution.nieparzyste++;
} else
break;
i++;
}
System.out.println("Parzyste: " + Solution.parzyste + " Nieparzyste: " + Solution.nieparzyste);
}
}