本帖最后由 贾晓军 于 2015-4-26 22:28 编辑
亲爱的谢谢你四年时间的陪伴,相濡以沫、不离不弃。到明天我们在一起就整四年了,这是继我亲手折520颗星星后又一次用心给你准备的礼物,虽然很丑陋,但我知道你一定不会嫌弃,你总说我给的就是最好的。但我想说我会努力给你最好的。For better,for worse and for saking all others,keep myself only unto you,for so lang as we both shall live.YES I DO!!!!
class LoveDemo
{
public static void main(String[] args)
{
int x=0;
if (x<4)
{
while (x==0)
{
System.out.println("* * * * * * *");
x++;
continue;
}
while (x==1)
{
System.out.println(" * * * * * *");
x++;
continue;
}
while (x==2)
{
System.out.println(" * * * * *");
x++;
continue;
}
while (x==3)
{
System.out.println("* * * * * * *");
x++;
continue;
}
}
}
}
|
|