viewing paste Unknown #9635 | Java

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12
public class Sandstorm 
    public static void main (String[] args)
    {
        String[] strings = {"Senpai", "is", "totally" ,"a" ,"casanova!?"};
        
 
        for( int i = 0; i < strings.length - 1; i++)
        {
            System.out.println(strings[i] + " ");
        }
    }
}
Viewed 964 times, submitted by Guest.