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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  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. }
复制代码

4 个回复

倒序浏览
题目是个什么东西,就一板代码,没注释,没题目
回复 使用道具 举报
还是很不错的嘛
回复 使用道具 举报
第一题,100以内3的倍数
第二题。4行5列的*排列
回复 使用道具 举报
基本上吧
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马