黑马程序员技术交流社区

标题: 这是我入学测试的代码,不知道对不对 [打印本页]

作者: a554305211    时间: 2015-8-21 00:32
标题: 这是我入学测试的代码,不知道对不对
  1. 1、
  2. public class getCount{
  3.         public static void main(String args[]){
  4.                 for(int i = 1;i <= 100;i++){
  5.                         if(getCount(i) != 0)
  6.                         System.out.println(getCount(i));
  7.                 }

  8.         }
  9.         public static int getCount(int i){
  10.                         if(i % 3 == 0)
  11.                                 return i;
  12.                         return 0;
  13.         }
  14. }
  15. 2、
  16. public class printJuXing{
  17.         public static void printJuXing(){
  18.                 for(int j = 0;j < 4;j++){
  19.                         for(int i = 0;i < 5;i++)
  20.                                 System.out.print("*");
  21.                         System.out.print("\n");
  22.                 }       
  23.         }
  24.         public static void main(String args[]){
  25.                 printJuXing();
  26.         }
  27. }
复制代码

作者: T-l-H、小生    时间: 2015-8-21 07:26
题目是个什么东西,就一板代码,没注释,没题目
作者: kevin986745zk    时间: 2015-8-21 08:02
还是很不错的嘛
作者: vipsong    时间: 2015-8-21 08:17
第一题,100以内3的倍数
第二题。4行5列的*排列
作者: 巧克黑力    时间: 2015-8-21 08:36
基本上吧




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2