Linux C 知识 char型数字转换为int型 int型 转换为Char

前言

在九度oj做acm的时候,经常会遇到了char类型和int类型相互转化的问题,这里进行一下总结。今后,可能会多次更新博客,因为半年做了很多总结,但是都是保存在word文档上了,现在开始慢慢向CSDN博客转移。

问题类型

char型数字转换为int型

转换方法

  1. a[i] - '0'

参考程序

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. int main()
  5. {
  6. char str[10];
  7. int i, len;
  8. while(scanf("%s", str) != EOF)
  9. {
  10. for(i = 0, len = strlen(str); i < len; i++)
  11. {
  12. printf("%d", str[i] - '0');
  13. }
  14. printf("\n");
  15. }
  16. return 0;
  17. }
 

int类型转化为char类型

转换方法

  1. a[i] + '0'

参考程序

    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. #include <string.h>
    4. int main()
    5. {
    6. int number, i;
    7. char str[10];
    8. while(scanf("%d", &number) != EOF)
    9. {
    10. memset(str, 0, sizeof(str));
    11. i = 0;
    12. while(number)
    13. {
    14. str[i ++] = number % 10 + '0';
    15. number /= 10;
    16. }
    17. puts(str);
    18. }
    19. return 0;
    20. }
上一篇:return,break,continue三者区别


下一篇:p1457 The Castle