- 博客(5)
- 收藏
- 关注
原创 IOS Technical Assistance (技术支持)
尊敬的开发者团队,如果您有任何问题请联系邮箱 17775039497@163.com 我会在收到邮件的第一时间与您取得联系。谢谢 Respect for the developer of the team,if you have any questions please contact email 17775039497@163.com I will get in tou...
2019-04-04 18:09:18 195
原创 九九乘法表
String [][]arr=new String[9][]; for (int i = 1; i <= arr.length; i++) { arr[i-1]=new String[i];//数组的长度 for (int j = 1; j <=i; j++) { ...
2018-07-18 16:21:07 111
原创 九九乘法表
int[][] array = new int[][] {{1,2,3,4,5,6,7,8,9},{1,2,3,4,5,6,7,8,9}}; for (int i = 0; i<array[0].length; i++) { for (int j = 0; j <= i; j++) { System.out.print(...
2018-07-18 16:19:33 532
原创 Java小练习求输入正整数求各位数字之和。
Scanner input=new Scanner(System.in); System.out.println("输入:"); String str = input.next(); int result = 0; for( int i=0;i<str.length();i++ ) { in...
2018-07-17 13:12:28 4333
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人