首页 > 其他 > 详细

99乘法表

时间:2016-05-08 06:33:09      阅读:160      评论:0      收藏:0      [点我收藏+]
用while循环实现
public static void main(String args[]){
     int a=1 ,b=1;
     while(a<10){
      while(b<10){System.out.print(a+"*"+b+"="+a*b+‘\t‘);b++;}
       ++a;b=a;System.out.println();
   }
  }
用三元运算实现
public static void main(String args[]){
int a=1,b=1;
while( ((a<10)&&(b<10)) ?true:false)
{
System.out.print(a+"*"+b+"="+a*b++ +‘\t‘);
if(b==10){b=++a;System.out.println(‘\n‘);}}

用for循环实现

public static void main(String args[]){
for(int i=1;i<10;i++){
for(int j=i;j<10;j++){
System.out.print(i+"*"+j+"="+i*j +‘\t‘);
}System.out.println();
}





 

99乘法表

原文:http://www.cnblogs.com/zhimazhadan/p/5469624.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!