黑马程序员技术交流社区
标题:
九九乘法表
[打印本页]
作者:
和鹏
时间:
2015-4-8 22:19
标题:
九九乘法表
/*
定义一个打印99乘法表的函数。
*/
public class FunctionDemo
{
public static void main(String[] args)
{
draw(5,6);
ChengFaBiao(9);
}
public static void draw(int row,int col)
{
for(int x=0;x<row;x++)
{
for(int y=0 ;y<col;y++)
{
System.out.print("*");
}
System.out.println();
}
}
public static void ChengFaBiao(int row)
{
for(int x=1;x<=row;x++)
{
for(int y=1;y<=x;y++)
{
System.out.print(y+"*"+x+"="+x*y+"\t");
}
System.out.println();
}
}
public static void print()
{
System.out.println("_____________________");
}
}
作者:
E.Young
时间:
2015-4-8 23:08
相互学习,共同努力,一起进步!
作者:
呐拽
时间:
2015-4-8 23:38
很不错 这就算是封装思想的培养了!
作者:
胡帅
时间:
2015-4-8 23:58
一起努力,从小事做起
作者:
黑色救护车
时间:
2015-4-9 07:39
楼主加油!!
作者:
懒的呼吸
时间:
2015-4-9 08:43
加油哦,继续努力
作者:
︶︿︶︶︿︶
时间:
2015-4-9 08:52
默默路过,就想得一个币
作者:
minliang
时间:
2015-4-9 09:42
这个程序是必须要会的,还有冒泡排序,选择排序,要求对双层循环的理解要透彻!
作者:
caotierong
时间:
2015-4-9 10:30
建议写注释,标明每个方法的功能是什么,这样很有阅读性
作者:
奔放的龙小胖
时间:
2015-4-9 10:42
给兄弟点个赞,还不错
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2