我可以操纵我的数组以为索引起点打印一个吗?

我的数组索引从0开始,这很好,但是我希望它看起来像在我的输出中从1开始。有没有办法做到这一点?这是我的for循环:

for( x=0;x<3;x++) {
  for( i=0;i<4;i++) {
    if(rounded[i][x]<395 || rounded[i][x] >405) {
        System.out.println("there is an error with point "+i+"on element"+x+"as the temperature is at"+rounded[i][x]);
    }
  }
}

最佳答案

为什么不简单在输出上加1?

 for( x=0;x<3;x++)
 {
    for( i=0;i<4;i++)
    {
        if(rounded[i][x]<395 || rounded[i][x] >405)
        {
            System.out.println("there is an error with point "+(i+1)+"on element"+x+"as the temperature is at"+rounded[i][x]);
        }
    }
  }

08-27 06:10