上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页
摘要: ''' 需求:1-100的数字,如果个位数十位数是7,或者是7的倍数,需要喊过 ''' # for循环实现缝7过游戏 # for i in range(1,100): # gewei=i%10 # shiwei=i//10%10 # beishu=i%7 # if (gewei==7)or(shiw 阅读全文
posted @ 2022-08-02 19:35 NiceTwocu 阅读(250) 评论(0) 推荐(0)
摘要: package com.itheima; import com.sun.xml.internal.ws.api.model.wsdl.WSDLOutput; public class shuzudemo2 { public static void main(String[] args) { //数组 阅读全文
posted @ 2022-08-02 00:09 NiceTwocu 阅读(803) 评论(0) 推荐(0)
摘要: package com.itheima; import com.sun.xml.internal.ws.api.model.wsdl.WSDLOutput; public class shuzudemo { public static void main(String[] args) { //数组定 阅读全文
posted @ 2022-08-02 00:08 NiceTwocu 阅读(19) 评论(0) 推荐(0)
摘要: package com.itheima; public class shuzudemo1 { public static void main(String[] args) { //数组定义 // int[] arr=new int[]{98,99,100}; int[] arr={98,99,100 阅读全文
posted @ 2022-08-02 00:07 NiceTwocu 阅读(23) 评论(0) 推荐(0)
摘要: package com.itheima; //判断一个整数是否是水仙花数 public class methodmedo10 { public static void main(String[] args) { // boolean k = j(111); //// System.out.print 阅读全文
posted @ 2022-08-02 00:05 NiceTwocu 阅读(30) 评论(0) 推荐(0)
摘要: package com.itheima; //设计一个方法获取三个整数的较大值,并在控制台打印输出 public class methodmedo09 { public static void main(String[] args) { int max = getmax(10, 20, 30); S 阅读全文
posted @ 2022-08-02 00:05 NiceTwocu 阅读(62) 评论(0) 推荐(0)
摘要: package com.itheima; //方法重载 /*在同一个类 方法名相同 参数类型不同或参数个数不同 需求:比较两个数是否相等,4种数据类型 */ public class methodmedo11 { public static void main(String[] args) { Sy 阅读全文
posted @ 2022-08-02 00:04 NiceTwocu 阅读(74) 评论(0) 推荐(0)
摘要: package com.itheima; //返回调用带参数方法的结果 public class methodmedo05 { public static void main(String[] args) { //定义调用的变量 int i=10; i=12; //在main()方法中引用定义好的方 阅读全文
posted @ 2022-08-02 00:03 NiceTwocu 阅读(99) 评论(0) 推荐(0)
摘要: package com.itheima; //比较相等 public class methodmedo08 { public static void main(String[] args) { //定义两个变量保存输入的值 int a = 10; int b = 20; b=10; //定义一个变量 阅读全文
posted @ 2022-08-02 00:03 NiceTwocu 阅读(35) 评论(0) 推荐(0)
摘要: package com.itheima; //1-n之间的数求和,n>1 public class methodmedo07 { public static void main(String[] args) { int restul = sum(5); System.out.println("1-5 阅读全文
posted @ 2022-08-02 00:03 NiceTwocu 阅读(79) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 24 下一页