c语言中如何将字符串转化成整数型并输出?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言中如何将字符串转化成整数型并输出?相关的知识,希望对你有一定的参考价值。
c语言中,可以使用atoi()函数将字符串转化成整数型并输出。
atoi (表示 ascii to integer)是把字符串转换成整型数的一个函数,应用在计算机程序和办公软件中。int atoi(const char *nptr) 函数会扫描参数 nptr字符串,会跳过前面的空白字符(例如空格,tab缩进)等。
如果 nptr不能转换成 int 或者 nptr为空字符串,那么将返回 0 。特别注意,该函数要求被转换的字符串是按十进制数理解的。atoi输入的字符串对应数字存在大小限制(与int类型大小有关),若其过大可能报错-1。
扩展资料:
C语言常用函数:
1、int abs(int i)
返回整型参数i的绝对值。
2、double cabs(struct complex znum)
返回复数znum的绝对值。
3、double fabs(double x)
返回双精度参数x的绝对值。
4、long labs(long n)
返回长整型参数n的绝对值。
5、double exp(double x)
返回指数函数ex的值。
6、double frexp(double value,int *eptr)
返回value=x*2n中x的值,n存贮在eptr中。
7、double ldexp(double value,int exp)
返回value*2exp的值。
8、double log(double x)
返回logex的值。
9、double log10(double x)
返回log10x的值。
10、double pow(double x,double y)
返回x^y的值。
参考资料来源:百度百科-atoi
参考技术A在C语言中将字符串转化成整型有两种方法。
1 用atoi函数。
atoi的功能就是将字符串转为整型并返回。其声明为
int atoi(char *str);
比如atoi("1234");会返回整型1234。
2 用sscanf。
sscanf与标准格式化输入函数scanf类似,不过源并非是标准输入,而是字符串。
用sscanf可以处理更复杂的字符串。
比如字符串char * str = "a=1, b=2";
定义int a,b;后
可以用
sscanf(str,"a=%d, b=%d",&a,&b);
来将a,b值提取,计算后,a=1, b=2。
1 用atoi函数。
atoi的功能就是将字符串转为整型并返回。其声明为
int atoi(char *str);
比如atoi("1234");会返回整型1234。
2 用sscanf。
sscanf与标准格式化输入函数scanf类似,不过源并非是标准输入,而是字符串。
用sscanf可以处理更复杂的字符串。
比如字符串char * str = "a=1, b=2";
定义int a,b;后
可以用
sscanf(str,"a=%d, b=%d",&a,&b);
来将a,b值提取,计算后,a=1, b=2。
如何用C语言将输入的数字转化成英语
数字为1-10000之间,由于我刚开始学C,我用的一种比较传统的方法比较复杂要写很多语句,所以想请教一下高手有没有什么简单的方法,谢谢!
是将数字转化成英文啊 如;11:ELEVEN,135:ONE HUNDRED FIVE
和你的相比,不知是否复杂。
此程序的计算范围:0<=num<1000。如果还想要计算更大的数,可以在最后面加判断语句,方法类似。
#include<stdio.h>
void main()
char *Eng1[20]="zero","one","two","three","four","five","six","seven",
"eight","nine","ten","eleven","twelve","thirteen","fourteen","fifteen",
"sixteen","seventeen","eighteen","nineteen";
char *Eng2[8]="twenty","thirty","fourty","fifty","sixty","seventy","eighty","ninety";
int num;
printf("请输入数字: ");
scanf("%d",&num);
printf("对应的英文为: ");
if(num>=0&&num<=19)
printf("%s\n",Eng1[num]);
else if(num<100)
int s,y;
s=num/10;
y=num%10;
printf("%s %s\n",Eng2[s-2],Eng1[y]);
else if(num<1000)
int b,s,y;
b=num/100;
y=num%100;
if(y>9)
s=(num%100)/10;
y=(num%100)%10;
if(y==0)
printf("%s hundred and %s\n",Eng1[b],Eng2[s-2]);
else
printf("%s hundred and %s %s\n",Eng1[b],Eng2[s-2],Eng1[y]);
else
printf("%s hundred and %s\n",Eng1[b],Eng1[y]);
参考技术A 只有按照ASCII码进行对应转换,把输入的数字转换为相应的英文字母,没有其他方法了 参考技术B #include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[])
char a;
while('\n'!=a)
a=getchar();
switch (a)
case '0':printf("zero ");break;
case '1':printf("one ");break;
case '2':printf("two ");break;
case '3':printf("three ");break;
case '4':printf("four ");break;
case '5':printf("five ");break;
case '6':printf("six ");break;
case '7':printf("seven ");break;
case '8':printf("eight ");break;
case '9':printf("nine ");break;
return 0;
参考技术C #include<stdio.h>
char *Eng1[20] = "zero", "one", "two", "three", "four", "five", "six", "seven",
"eight", "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen",
"sixteen", "seventeen", "eighteen", "nineteen" ;
char *Eng2[8] = "twenty", "thirty", "fourty", "fifty", "sixty", "seventy", "eighty", "ninety" ;
int num;
void fun(int num)
if (num >= 0 && num <= 19)
printf("%s\n", Eng1[num]);
else if (num<100)
int s, y;
s = num / 10;
y = num % 10;
printf("%s %s\n", Eng2[s - 2], Eng1[y]);
else if (num<1000)
int b, s, y;
b = num / 100;
y = num % 100;
if (y>9)
s = (num % 100) / 10;
y = (num % 100) % 10;
if (y == 0)
printf("%s hundred %s ", Eng1[b], Eng2[s - 2]);
else
printf("%s hundred %s %s", Eng1[b], Eng2[s - 2], Eng1[y]);
else
printf("%s hundred %s", Eng1[b], Eng1[y]);
void main()
scanf("%d", &num);
if (num > 0)
if (num > 1000)
if (num > 1000000)
if (num > 1000000000)
int numw = num / 1000000000;
num = num % 1000000000;
fun(numw);
printf(" billion ");
int numx = num / 1000000;
num = num % 1000000;
fun(numx);
printf(" million ");
int numy = num / 1000;
num = num % 1000;
fun(numy);
printf(" thousand ");
int numz = num;
fun(num);
根据我的题目中间不用and,要改可以自调,数据范围一直到100billon,在此谢谢mhy8946(不会是清洁工吧。。。同行么)的算法,要不然我也搞不出来hh 参考技术D 没有
以上是关于c语言中如何将字符串转化成整数型并输出?的主要内容,如果未能解决你的问题,请参考以下文章