请教JAVA中大括号的用法.
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请教JAVA中大括号的用法.相关的知识,希望对你有一定的参考价值。
public class 静态数组
public static void main(String args[])
int shuzu[] = 91,92,93,94,95;
int max = 0;
int min = 0;
max = min = shuzu[0];
for(int x=0;x<shuzu.length;x++)
if(shuzu[x]>max)
max = shuzu[x];
if(shuzu[x]<min)
min = shuzu[x];
System.out.println("数组中的最大值:" + max);
System.out.println("数组中的最小值:" + min);
为什么如果我把倒数第三个大括号放到倒数第二的位置,运行后的结果完全不一样?请教各位大神了.小弟刚学JAVA,对这个大括号还有分号;比较困惑.
换了位置,当然不同意义了,自己看一下吧,代码还不多、还挺清晰的。
以上是关于请教JAVA中大括号的用法.的主要内容,如果未能解决你的问题,请参考以下文章