怎么用java打印如下的图案?

 我来答
小渔小余
2014-11-25 · 超过28用户采纳过TA的回答
知道答主
回答量:252
采纳率:0%
帮助的人:49.9万
展开全部
public static void main(String[]args){
for(int i=1;i<11;i++){
for(int j=i;j<11;j++){
System.out.print(" ");
}
for(int z=1;z<=i*2-1;z++){
System.out.print("*");
}
System.out.println();
}
}
上面那个程序是打印一个正着放置的三角行,根据上面的自己分析下,考虑下怎么去实现你那个图像吧,其实也很简单的!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-11-25
展开全部
class Test {
def static int all = 12; //用来处理一行要打印的数量 从0开始的
def static int t = all/2;
public static void main(String[] args) {
callBack(all)
}
//递归回调函数
def static callBack(i){
int s = all-i
if(i>t){
printSpace(s)
printChar(all-s*2,"*")
printSpace(s);
println " " +i
}else{
printSpace(i)
printChar(all-s*2,"*")
printSpace(i);
println " " +i
}
if(i--<1){return}
callBack(i);
}
//打印字符
def static printChar(i,c){
(0..i).each{
print c
}
}
// 打印空格
def static printSpace(i){
(0..i).each{
print " "
}
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友ca36e9460d
推荐于2016-02-04 · TA获得超过347个赞
知道小有建树答主
回答量:326
采纳率:0%
帮助的人:137万
展开全部
/**
* 使用*号输出倒三角
* @author hao.yan
* 2014-11-21
*/
public class test {
public static void main(String[] args) {
//传递的参数必须是大于0的奇数
dsj(11);
}
/**
*
* @param x
* 大于0的奇数
*/
public static void dsj(int x) {
if (x % 2 == 0 || x < 1) {
return;
}
if (x == 1) {
System.out.println("*");
return;
}
int max = x / 2;
int xinghao = x - 2;
int kongge = 1;
do {
int temp = kongge;
do {
System.out.print(" ");
temp--;
} while (temp > 0);
temp = xinghao;
do {
System.out.print("*");
temp--;
} while (temp > 0);
System.out.println();
xinghao -= 2;
kongge++;
} while (xinghao > 0);
}
}

使用do while 循环写的,动态传入参数
已经验证~
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
激动的马
2014-11-25
知道答主
回答量:56
采纳率:0%
帮助的人:13.1万
展开全部
分上下2个部分打印,注意空白也是一个字符
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式