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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

提示: 该帖被管理员或版主屏蔽

8 个回复

倒序浏览
过来学习一下!
回复 使用道具 举报
互相学习!!!!
回复 使用道具 举报
好人 一生平安。。。。刚好解惑乐乐~~
回复 使用道具 举报
厉害!顶一个
回复 使用道具 举报
//1. 设计一个方法, 取名叫getCount用来计算出1-100之间有多少能被3整除,要求有返回值,并把结果打印在控制台上.

class  Demo{
       
        public static void main(String[] args) {            //主函数

                getCount(100);

        }
       
        public static int getCount(int c){

                int d=0;

                for(int a=1;a<=c;a++){

                        if(a%3==0){

                                 d+=1;

                           }

                         }

                        System.out.println("d="+d);

                        return c;

                }
               
        }

/*2. 设计一个方法,用来打印出下面的图形,取名为printJuXing. 把图形打印在控制台上,不要返回值.
*****
*****
*****
*****     */


class Demo1{

      public static void main(String[] args ){

               printjuxing(4);

         }

     public static void printjuxing(int c){

          for(int a=1;a<=c;a++){

             for(int b=1;b<=c+1;b++){

               System.out.print("*");
            
               }
          System.out.println();
   
           }

        }
    }
回复 使用道具 举报
学习了!!
回复 使用道具 举报
了解下 ,希望以后能会更多吧
回复 使用道具 举报
这是基础辅导班的入学考试题?
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马