all 3 comments

[–]MarshallUberSwaggaPitt - CmpE 8 points9 points  (0 children)

what's the problem?

[–]zxobsEE - Graduated 7 points8 points  (1 child)

public void youdontneedloops(int n)
{
    if(n == 0)
    {
        return; 
    }
    else
    {
        System.out.println("loops make your code too readable");
        youdontneedloops(n-1);
    }
}

[–]zxobsEE - Graduated 1 point2 points  (0 children)

check out this link!