整數轉為十進制字符串
阿新 • • 發佈:2019-04-15
limit clu for .com har n) 編寫 字符串 end
描述:
編寫遞歸函數char * itostr (int n,char * string),該函數將整數n轉換為十進制表示的字符串。(提示:使用遞歸方法)
#include <iostream> #include<limits.h> #define N 100 int i = 0; char *itostr(int n, char *string) { if (n == INT_MIN) { string[i] = '-'; i++; n = -(n + 1); string[i] = (n % 10) + 49; n /= 10; i++; } if (n < 0&&n!=INT_MIN) { string[i] = '-'; i++; n = -n; } string[i] = (n % 10) + 48; if (n /10 == 0 ){ return string; } else { i++; return itostr(n / 10, string); } } int main() { int n; char str[N]; std::cout << "請輸入n(-2147483648~2147483647):" << std::endl; std::cin >> n; std::cout << "裝換結果為:" << std::endl; if (n < 0) { itostr(n, str); std::cout << str[0]; for (int j = i;j > 0;j--) std::cout << str[j]; } else { itostr(n, str); for (int j = i;j >= 0;j--) std::cout << str[j]; } return 0; }
運行截圖:
整數轉為十進制字符串