视频
笔记
方法练习1(判断奇偶性)
需求:
键盘录入一个整数,将整数传递到另外一个方法中,在此方法中判断这个整数的奇偶性
如果是偶数,方法返回”偶数” 否则返回”奇数”
方法三要素:
方法名:要
参数:要
返回值:要
public class Demo01Method { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int data = sc.nextInt(); String result = method(data); System.out.println("result = " + result); } /* 键盘录入一个整数,将整数传递到另外一个方法中,在此方法中判断这个整数的奇偶性 如果是偶数,方法返回"偶数" 否则返回"奇数" */ public static String method(int data){ if (data%2==0){ return "偶数"; }else{ return "奇数"; } } }
方法练习2(1-100的和)
需求 : 求出1-100的和,并将结果返回
方法名:要
参数:不要
返回值:要
public class Demo02Method { public static void main(String[] args) { int result = method(); System.out.println("result = " + result); } public static int method() { int sum = 0; for (int i = 1; i <= 100; i++) { sum+=i; } return sum; } }
方法练习3(不定次数打印)
需求:
定义一个方法,给这个方法传几,就让这个方法循环打印几次"我是一个有经验的JAVA开发工程师"
方法名:要
参数:要
返回值:不要
public class Demo03Method { public static void main(String[] args) { method(3); } public static void method(int n){ for (int i = 0; i < n; i++) { System.out.println("我是一个有经验的java开发工程师"); } } }