Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为我的应用程序设置了一组 int Arraylist。例如
int[] array={10,8,-4,-6,5}
在这里我想检查这个数组列表。我将这个数组用于我的条形图。如果所有值都包含正值,我想在 0 到 100% Y 轴中显示图形。如果数组包含负值,我想要显示负轴,如 -50 到 100 % 取决于该值。
如何解决这个问题的逻辑。任何人都可以帮助我完成我的应用程序吗?
boolean isNegative=false; for(int i=0;i<array.length;i++) { if(array[i]<0) { isNegative=true; break; } } if(isNegative) { // code for displaying negative axis } else { //only display positive axis }