public static void main(String[] args) {
double x = Math.random() * 5 ;
double result = Math.pow (3,x) ;
do{
x = Math.random() * 5 ;
result = Math.pow (3,x) ;
}while (result != 26);
{
System.out.println (x) ;
}
translation:
creates a number betweeen 0 and 5,elevates 3 by that,and if the result is 26,the number between 0 and 5 is shown (this number has 15+ decimals)
i shall now wait all eternity until that`s complete