博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
两种方法打印99乘法表
阅读量:5153 次
发布时间:2019-06-13

本文共 652 字,大约阅读时间需要 2 分钟。

class test  {    public static void main (String[] args){        //双循环        for(int i=1;i<10;i++){              for(int a=1;a<=i;a++){                  System.out.print(a+"*"+i+"="+a*i+"\t");             }            System.out.println();         }                   System.out.println("---------------------我是分割线-------------------------");               //单循环        for(int i=1,j=1;i<=9;j++){              System.out.print(j+"*"+i+"="+i*j+"\t");              if (j==i){                  i++;                  j=0;                  System.out.println();              }          }     }}

 

  打印出来的效果是一样的

 

转载于:https://www.cnblogs.com/DSH-/p/9228199.html

你可能感兴趣的文章
进程间的通信方式
查看>>
25、DataReaderWriter
查看>>
document.cookie的使用
查看>>
.NET运行时中的监测和可观测性
查看>>
《Hadoop基础教程》之初识Hadoop(转载)
查看>>
#Leetcode# 240. Search a 2D Matrix II
查看>>
#Leetcode# 143. Reorder List
查看>>
PAT L2-016 愿天下有情人都是失散多年的兄妹
查看>>
抛弃IIS,利用FastCGI让Asp.net与Nginx在一起
查看>>
Linux下源码编译安装PostgreSQL数据库
查看>>
Win7生产力心得(1)——如何让资源管理器中目录树与内容窗口产生联动效果
查看>>
C. Tanya and Toys_模拟
查看>>
System.nanoTime与System.currentTimeMillis
查看>>
Iterator(Chapter 14 of Pro Objective-C Design Patterns for iOS)
查看>>
MySQL 系统架构 说明
查看>>
mysql的锁机制
查看>>
菜根谭#163
查看>>
CVE-2017-5638——S2-045
查看>>
入职互联网行业两个月
查看>>
最大子阵列和
查看>>