I don't understand, why?
maybe I don't understand the logic of the solution
package pl.codegym.task.task10.task1011;
/*
Dużo pieniędzy
*/
public class Solution {
public static void main(String[] args) {
String s = "Wcale nie chcę uczyć się Javy. Chcę tylko dużo pieniędzy";
//tutaj wpisz swój kod
int x = 1;
for(int i=0; i<40; i++)
{
System.out.println(s);
switch(x)
{
case(1):
{
s = " " + s.substring(1, s.length());
x++;
break;
}
case(2):
{
s = s.trim();
x++;
break;
}
case(3):
{
s = " " + s.substring(1, s.length());
s = s.trim();
x = 1;
break;
}
}
}
}
}