C语言字符转换成整形。
答案:3 悬赏:10 手机版
解决时间 2021-04-06 00:38
- 提问者网友:最爱你的唇
- 2021-04-05 12:52
C语言字符转换成整形。
最佳答案
- 五星知识达人网友:往事埋风中
- 2021-04-05 13:09
转换有两种方法:
第一种用“atoi”的:
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
void main()
{
char str[1024] = {0};
int Interger;
printf("输入一个数字:
");
scanf("%s", str);
Interger = atoi(str);
printf("转换为整形:%d
", Interger);
getch();
}
第二种:
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
void main()
{
char str[1024] = {0};
int Interger;
printf("输入一个数字:
");
scanf("%s", str);
sscanf(str, "%d", &Interger);
printf("转换为整形:%d
", Interger);
getch();
}
第一种用“atoi”的:
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
void main()
{
char str[1024] = {0};
int Interger;
printf("输入一个数字:
");
scanf("%s", str);
Interger = atoi(str);
printf("转换为整形:%d
", Interger);
getch();
}
第二种:
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
void main()
{
char str[1024] = {0};
int Interger;
printf("输入一个数字:
");
scanf("%s", str);
sscanf(str, "%d", &Interger);
printf("转换为整形:%d
", Interger);
getch();
}
全部回答
- 1楼网友:枭雄戏美人
- 2021-04-05 15:50
在c标准库头文件中有一系列的字符串跟数值转换函数。
给你个例子:
#include
#include
int main()
{
char * ptr="123abc";
int a=::atoi(ptr);
::printf("%d",&a);
::getchar();
::getchar();
}
给你个例子:
#include
#include
int main()
{
char * ptr="123abc";
int a=::atoi(ptr);
::printf("%d",&a);
::getchar();
::getchar();
}
- 2楼网友:七十二街
- 2021-04-05 14:45
char i='1' 利用asic码转换
printf("%d\n",i-'0');
用i的asic码减去字符0的asic码就是它所表示的数字啦
printf("%d\n",i-'0');
用i的asic码减去字符0的asic码就是它所表示的数字啦
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯