240 发简信
IP属地:黑龙江
  • 联系

    package com.itheima; import java.util.Scanner; /* * 需求:键盘录入一个月份,输出该月份对应的...

  • 方法1

    ackage com.itheima_01; /* * 方法:其实就是完成特定功能的代码块 * * 定义格式: * 修饰符 返回值类型 方法...

  • 数组二

    ackage com.itheima_04;/* * 数组获取最值(获取数组中的最大值最小值) */public class ArrayTest...

  • 第四天数组

    package com.itheima_01; /* * 定义两个数组,先定义一个数组,赋值,输出。然后定义第二个数组的时候把第一个数组的地址赋...

  • 第四天 数组

    ackage com.itheima_01; /* * 数组:存储同一种数据类型的多个元素的容器。 * * 定义格式: * A:数据类型[]...

  • 导包

    package com.itheima; import java.util.Random; /* * Random:用于产生随机数 * * 使用...

  • 无标题文章

    package com.itheima_07; /* * continue:继续的意思 * 使用场景: * 循环中 * 注意: * 离开...

  • do while

    package com.itheima_06; /* * do...while循环的基本格式: * do { * 循环体语句; * ...

  • while

    ackage com.itheima_05; /* * while循环语句的基本格式: * while(判断条件语句) { * 循环体...