输入一个由数字组成的字符串,把它转换成整数并输出。例如:输入字符串"123",输出整数123。 ... 0) { int c = *str - '0'; n = n * 10 + c; ++str; } return n; }.
確定! 回上一頁