月下峰 故人逢 晓亭长叙思乡情
——情更浓
BlogJava
首页
新随笔
联系
聚合
管理
数据加载中……
乘法表打印 ----我的编写过程
1
/**/
/*
2
* 失败案例 注意while循环结构
3
* 哈哈^_^ 整数平方表 歪打正着
4
*
*/
5
public
class
chengfa
{
6
public
static
void
main (String[] args)
{
7
int
cheng,a
=
1
,b
=
1
;
8
System.out.println(
"
\n
"
);
9
while
( a
<=
9
)
{
10
/**/
/*
11
* 失败原因在while循环中迭代是同步的
12
* 所以总是a=b 九九乘法表没有打出来
13
* 倒是打出来1-10的整数的平方
14
*/
15
while
(b
<=
a)
{
16
cheng
=
a
*
b;
17
if
(b
<
a)
{
18
System.out.print(a
+
"
*
"
+
b
+
"
=
"
+
cheng
+
"
\t
"
);
19
}
else
{
20
System.out.println(a
+
"
*
"
+
b
+
"
=
"
+
cheng
+
"
\t
"
);
21
}
22
b
++
;
23
}
24
a
++
;
25
}
26
}
27
}
28
29
30
又一个
1
public
class
chengfabiao
{
2
public
static
void
main(String[] args)
{
3
int
i
=
1
,j
=
1
;
4
int
result;
5
for
(i
=
1
;i
<=
9
;i
++
)
{
6
for
(j
=
1
;j
<=
i;j
++
)
{
7
result
=
i
*
j;
8
if
(j
<
i)
{
9
System.out.print(i
+
"
*
"
+
j
+
"
=
"
+
result
+
"
"
);
10
}
else
{
11
System.out.println(i
+
"
*
"
+
j
+
"
=
"
+
result
+
"
"
);
12
}
13
}
14
}
15
}
16
}
1
public
class
chengfabiao1
{
2
public
static
void
main(String args[])
{
3
int
i,j,result;
4
for
(i
=
1
;i
<=
9
;i
++
)
{
5
for
(j
=
1
;j
<=
i;j
++
)
{
6
result
=
i
*
j;
7
System.out.print(i
+
"
*
"
+
j
+
"
=
"
+
result
+
"
\t
"
);
8
}
9
System.out.print(
"
\n
"
);
10
}
11
}
12
}
posted on 2008-08-21 18:40
月下峰
阅读(155)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
<
2008年8月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
统计
随笔 - 3
文章 - 1
评论 - 0
引用 - 0
常用链接
我的随笔
我的评论
我的参与
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔档案
2008年8月 (3)
文章档案
2008年8月 (1)
相册
相册
收藏夹
晓亭 藏品
(rss)
搜索
最新评论
阅读排行榜
1. 打印质数 ——我的编写过程(259)
2. 乘法表打印 ----我的编写过程(155)
3. 排列 (84)
评论排行榜
1. 排列 (0)
2. 打印质数 ——我的编写过程(0)
3. 乘法表打印 ----我的编写过程(0)