循环1


public class aaaa {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int i=1;
while(i<10)
{
System.out.println("第"+i+"遍输入好好学习,天天向上");
i++;
}
}

}

猜你喜欢

转载自www.cnblogs.com/aaaaaa6699/p/12510886.html