假设我的代码是
public class GetValueInLoop{
public static void main(String[] args) throws InterruptedException {
int a1=3;
int a2=4;
int a3=5;
int result;
for(int i=1; i<4;i++){
result = a(i);
System.out.println("Value of a(i): "+result );
}
}
如何获得
之类的输出Value of a1:3
Value of a2:4
Value of a3:5
任何人都可以帮助我 感谢
答案 0 :(得分:0)
您最好使用数组:
public class GetValueInLoop{
public static void main(String[] args) throws InterruptedException {
int[] a= {3, 4, 5};
for(int i=0; i<a.length;i++){
System.out.println("Value of a(" + (i+1) + "): " + a[i]);
}
}
}
答案 1 :(得分:0)
你可以像这样使用
public class Main {
public static void main(String... args) {
int a[]={3,4,5};
int result;
for(int i=0; i<a.length;i++){
result = a[i];
System.out.println("Value of a(i): "+result );
}
}
}
<强>输出:强>
Value of a(i): 3
Value of a(i): 4
Value of a(i): 5