JAVA,for迴圈問題,列印星號。
// *
// **
// ***
// ****
// *****
public class star12345 {
public static void main(String[] args) {
int z=1;
for(int x=5;x>=1;x--)
{
for(int y=1;y<=x;y++)
{
System.out.print("*");
}
System.out.println();
}
}
}
// **
// ***
// ****
// *****
public class star12345 {
public static void main(String[] args) {
int z=1;
for(int x=5;x>=1;x--)
{
for(int y=1;y<=x;y++)
{
System.out.print("*");
}
System.out.println();
}
}
}
留言
張貼留言