英文:
how to create loops in which create a star pyramid based on user input
问题
Sure, here's the translation of the code you provided:
(java)编写一个应用程序,将会要求用户输入一个正整数。根据用户的输入,您的程序必须使用循环来创建一系列星星图案,每一行的星星数量都要少一个。
输入:
5
输出
*****
****
***
**
*
英文:
(java) Write an application that will ask the user to enter a positive integer. Based on the user input, your program must use a loop(s) to create a pattern of stars, each subsequent row must have one less star.
input:
5
output
*****
****
***
**
*
答案1
得分: 1
void printStars(int num){
for(int i=num; i>0; --i){
for(int j=0; j<i; ++j){
System.out.println("*");
}
System.out.println("");
}
}
The above code should help.
英文:
void printStars(int num){
for(int i=num;i>0;--i){
for(int j=0;j<i;++j){
System.out.println("*");
}
System.out.println("");
}
}
The above code should help.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论