Java简单程序设计
编写一段小程序,利用循环语句打印出如下几行字符。0+1++2+++3====4=====5======...
编写一段小程序,利用循环语句打印出如下几行字符。
0+
1++
2+++
3====
4=====
5====== 展开
0+
1++
2+++
3====
4=====
5====== 展开
展开全部
你好提问者,
如果解决了你的问题请采纳,若有疑问请追问,谢谢!
package com.zyx.cn.baidu_show;
/**
0+
1++
2+++
3====
4=====
5======
* @author yltd
*/
public class Sanjiao {
public static void main(String[] args) {
show(5);
}
public static void show(int number){
for (int i = 0; i <= number; i++) {
System.out.print(i);
if(i>=0 &&i<3){
for (int j = i; j>=0 ; j--) {
System.out.print("+");
}
}else{
for (int j = i; j>=0 ; j--) {
System.out.print("=");
}
}
System.out.println();
}
}
}
0+
1++
2+++
3====
4=====
5======
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询