A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© wqw 中级黑马   /  2015-6-6 22:44  /  233 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

/*
第一个Java小程序,Hello world
*/
class HelloWorld{//定义一个Hello World的类
public static void main (String[] args)//main的主方法
{
  System.out.println("Hello World");
  int m=getCount(100);//打印输出Hello World
  System.out.println("m="+m);
  printJuXing(4,5);
}
public static int getCount(int a){
  int m=0;
  int i=1;
  for(i=1;i<=a;i++)
  { if(i%3==0){
   m++;
   }
  }
  return m;

}

public static void int printJuXing(int z,int f){
  for (int x=0;x<z;x++)
  { for (int y=0;y<f;y++)
   {
    System.out.print("*");
    }
  System.out.println();
}
}
}

4 个回复

倒序浏览
这是啥啊
回复 使用道具 举报
你的getCount(int a)方法是用来打印1~100之间能被3整除的个数,
第二个printJuXing(int z,int f)方法根据见名知意可以知道是打印矩形

点评

wqw
赞,你太厉害了,向你学习  发表于 2015-6-8 21:48
wqw
赞,你太厉害了  发表于 2015-6-8 21:46
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马