blog/content/post/2009/05/13/2009-05-13-00001153.md

7.2 KiB
Raw Blame History

title author date wordtwit_post_info categories
16進数を10進数に変換する関数の作成 kazu634 2009-05-13
O:8:"stdClass":13:{s:6:"manual";b:0;s:11:"tweet_times";s:1:"1";s:5:"delay";s:1:"0";s:7:"enabled";s:1:"1";s:10:"separation";i:60;s:7:"version";s:3:"3.7";s:14:"tweet_template";b:0;s:6:"status";i:2;s:6:"result";a:0:{}s:13:"tweet_counter";i:2;s:13:"tweet_log_ids";a:1:{i:0;i:4591;}s:9:"hash_tags";a:0:{}s:8:"accounts";a:1:{i:0;s:7:"kazu634";}}
C

前回の続きです。

前回は19までの数字しか対応させていなかったので、afも対応させるように修正させました。getdigitという関数を書いて、19, afまでを引数として受け取り、10進数を返すようにしてみました:

#include <stdio.h>
/* === prototype declarations === */
/* htoi: 16進数を10進数に変換する */
void htoi(char hex[]);
/* count: char型の配列の要素数をカウントする。*/
int count(char hex[]);
/* getdigit: 16進数の1桁(char型(19, AF))を引数とし、10進数を返す */
int getdigit(char num);
/* === Main Part === */
int main(int argc, char *argv[]) {
  htoi(argv[1]);
  return 0;
}
void htoi(char hex[])
{
  int i;
  int n = 0;
  for (i = (count(hex) - 1); i != -1; i--)
  {
    if (i == (count(hex) - 1)){
      printf("n = %d + %d\n", n, getdigit(hex[i]));
      n = n + getdigit(hex[i]);
    } else {
      printf("n = %d + (16 * %d)\n", n, getdigit(hex[i]));
      n = n + (16 * getdigit(hex[i]));
    }
  }
  printf("%d\n", n);
}
int count(char hex[])
{
  int i;
  int num = 0;
  for (i = 0; hex[i] != '\0'; ++i)
  {
    num++;
  }
  return num;
}
int getdigit(char num)
{
  switch(num) {
    case '0':
      return 0;
    case '1':
      return 1;
    case '2':
      return 2;
    case '3':
      return 3;
    case '4':
      return 4;
    case '5':
      return 5;
    case '6':
      return 6;
    case '7':
      return 7;
    case '8':
      return 8;
    case '9':
      return 9;
    case 'a':
      return 10;
    case 'b':
      return 11;
    case 'c':
      return 12;
    case 'd':
      return 13;
    case 'e':
      return 14;
    case 'f':
      return 15;
    default:
      return 99;
  }
}

疑問の答え

こんな質問を書いていたら、maqさんから回答をいただきました:

maqmaq 2009/05/13 00:16 argv[1]の要素数を知ろうとして「sizeof argv[1] / sizeof argv[1][0]」が必ず4になるのはなぜ

sizeof(argv[1])はポインタのサイズが求まります。一般的なマシンなら32bitで4ですね。

sizeof(argv[1][0])はcharのサイズが求まります。これは8bitで1ですね。

なので4/1で4になるのではないでしょうか。

武蔵の日記

納得できました。ありがとうございますmaqさん

「[プログラミング言語C 第2版 ANSI規格準拠」に関連する最近のエントリ

プログラミング言語C 第2版 ANSI規格準拠

プログラミング言語C 第2版 ANSI規格準拠