下面的程序将打印一个单词,其第一个字母是由一个随机数生成器来选择的。请描述该程序的行为: import java.util.Random. public class Rhymes { private static Random rnd = new Random(). public static void main(String[] args) { StringBuffer word = null. switch(rnd.nextInt(2)) { case 1: word = new StringBuffer(’P’). case 2: word = new StringBuffer(’G’). default: word = new StringBuffer(’M’). } word.append(’a’). word.append(’i’). word.append(’n’). System.out.println(word). } }