bool isSingleDigit (int x) { if (x >= 0 && x < 10) { return true; } else { return false; } }. The name of this function is isSingleDigit.
確定! 回上一頁