上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
摘要: public class test1 { public static void main(String[] args) { int[] arr={99,25,34,48,63,78,101,71,12}; int max=arr[0]; for (int i=0;i<arr.length;i++){ 阅读全文
posted @ 2022-09-18 10:52 wshidaboss 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 所谓方法重载,就是在同一个作用域内,方法名相同但参数个数或者参数类型不同的方法。 public class test1 { public static void main(String[] args) { //方法调用 int sum1=add(1,2); int sum2=add(1,2,3); 阅读全文
posted @ 2022-09-18 09:55 wshidaboss 阅读(69) 评论(0) 推荐(0) 编辑
摘要: public class test1 { public static void main(String[] args){ printRectangle(3,5); //调用printRectangle方法实现打印矩形 printRectangle(2,4); printRectangle(6,10) 阅读全文
posted @ 2022-09-18 09:37 wshidaboss 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 1.break语句: 1)打印直角三角星型 public class test1 { public static void main(String[] args){ int i,j; for(i=1;i<=9;i++) { //外层循环 if (i > 4) { break; //跳出外层循环 } 阅读全文
posted @ 2022-09-18 09:23 wshidaboss 阅读(41) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class XMT_Ex2 { public static void main(String[] args){ int month; while (true) { Scanner input = new Scanner(System. 阅读全文
posted @ 2022-09-17 17:17 wshidaboss 阅读(437) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class XMT_Ex3 { public static void main(String[] args){ int row=0; Scanner input = new Scanner(System.in); System.out 阅读全文
posted @ 2022-09-17 17:13 wshidaboss 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 数组:数组是用于储存多个相同类型数据的集合。 指针:指针是一个变量,但是它和普通变量不一样,它存放的是其它变量在内存中的地址。 1. 赋值 数组:只能一个一个元素的赋值或拷贝 指针:指针变量可以相互赋值 2. 表示范围 数组有效范围就是其空间的范围,数组名使用下表引用元素,不能指向别的数组 指针可以 阅读全文
posted @ 2022-09-17 17:03 wshidaboss 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1.指针数组的应用: int* qishou[2];//定义一个有两个元素的指针数组,每个元素都是一个指针变量 #include <iostream> #include <string> #include <windows.h> using namespace std; int main() { i 阅读全文
posted @ 2022-09-17 13:11 wshidaboss 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1.二级指针 #include <iostream> #include <windows.h> #include <string> using namespace std; int main() { int guizi2 = 888; //存有私密文件的第二个柜子; int* guizi1 = &g 阅读全文
posted @ 2022-09-12 17:15 wshidaboss 阅读(119) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <windows.h> using namespace std; int main() { int girl = 19; int boy = 21; int const* p1 = &girl; //不能修 阅读全文
posted @ 2022-09-12 10:56 wshidaboss 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页