会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
芝麻炸弹
博客园
首页
新随笔
联系
订阅
管理
2016年5月8日
99乘法表
摘要: 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();
阅读全文
posted @ 2016-05-08 01:06 芝麻炸弹
阅读(149)
评论(0)
推荐(0)
2016年5月4日
Java语法对杨辉三角的描写
摘要: 1 public class YanghuiTower { 2 public static void main(String[] args) { 3 int[][]yanghui=new int[10][0]; 4 for(int i=0;i<10;i++){ 5 yangh...
阅读全文
posted @ 2016-05-04 16:49 芝麻炸弹
阅读(216)
评论(0)
推荐(0)
公告