public boolean add(int v)
{
if (count < list.length) // if there is still an available slot in the array
{
if (v >= minValue || v <= maxValue) // if the value is within range
{
list[count] = v; // add the value to the next available slot
count++; // increment the counter
return true; // all okay ; Value added
}
else
{
System.out.println("Error: The value is out of range. Value not added");
return false;
}
}
else
{
System.out.println("Error: The list is full. Value not added.");
return false;
}
}
Q
如何不允許負數?
-4
A
回答
1
應該考慮minValue
和maxValue
是正
if (v >= minValue && v <= maxValue)
如果minValue
是否定的,那麼你可以添加更多的檢查
if(v >= 0)
2
相關問題
- 1. 如何不允許變量爲負數?
- 2. 不允許使用負值
- 3. 不允許h中的負數:inputText
- 4. 正則表達式不允許負數
- 5. 如何允許負值,xml架構?
- 6. 我如何使不允許列允許空和允許空列不允許空
- 7. 允許負數十進制數
- 8. 角的正則表達式不應該允許負數,但它允許負整數
- 9. android ConstraintLayout不允許負邊距
- 10. 陣列不允許負索引C#
- 11. 負長度向量是不允許
- 12. 不允許按鈕按下負值
- 13. Infragistics:WebCurrencyEditor允許插入負值
- 14. 爲什麼這個IF允許負數?
- 15. 只允許在CXGrid中使用負數
- 16. 正則表達式只允許負數
- 17. 如何不允許文本框有負值? (Visual Basic)
- 18. htaccess - 如何允許mod-rewrite中的負數?
- 19. 表單字段數量上/下按鈕,不允許負數?
- 20. 不允許參數?
- 21. 陣列允許不允許
- 22. 如何只允許數字?
- 23. 不允許用升壓:: program_options無符號值負參數
- 24. 如何允許不允許的密鑰字符。在Codeigniter中?
- 25. 正則表達式允許負值
- 26. 驗證時間並允許負值
- 27. Microsoft Dynamics eConnect--允許有負面降價?
- 28. 允許IOS中的任意負載9
- 29. jquery - 只允許負數,正數或十進制數驗證
- 30. 如何允許輸入文本和數字,但不允許特殊字符?
是什麼問題? – 2013-04-25 19:55:47