编写函数fun,将一个数字字符串转换为一个整数,例如,输入字符串"-1234",则函数把他转换为整数值-1234
Posted jun俊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写函数fun,将一个数字字符串转换为一个整数,例如,输入字符串"-1234",则函数把他转换为整数值-1234相关的知识,希望对你有一定的参考价值。
#include <stdio.h> #include <string.h> long fun ( char *p) { int len,t; long x=0; len=strlen(p); if(p[0]==‘-‘) {t=-1;len--;p++;} else t=1; while(*p) x=10*x+(*p-48),p++; return x*t; } main() /* 主函数 */ { char s[6];void NONO (); long n; printf("Enter a string:\n") ; gets(s); n = fun(s); printf("%ld\n",n); NONO ( ); } void NONO () {/* 本函数用于打开文件,输入数据,调用函数,输出数据,关闭文件。 */ FILE *fp, *wf ; int i ; char s[20] ; long n ; fp = fopen("in.dat","r") ; wf = fopen("out.dat","w") ; for(i = 0 ; i < 10 ; i++) { fscanf(fp, "%s", s) ; n = fun(s); fprintf(wf, "%ld\n", n) ; } fclose(fp) ; fclose(wf) ; }
以上是关于编写函数fun,将一个数字字符串转换为一个整数,例如,输入字符串"-1234",则函数把他转换为整数值-1234的主要内容,如果未能解决你的问题,请参考以下文章
自定义一个函数itos,将一个整数转换为字符串的功能,并编写主函数调用该函数。
c语言程序设计请编写一个函数fun,它的功能是:将ss所指字符串中所有下标为奇数位置上的字母转换为
fun是将ss所指字符串中所有下标为奇数位置上的字母转换为大写(若该位置上不是字母则不换)