这个填空题怎么做啊???
题目:下面函数chnum将一个整数字符串转换为一个整数。注意:空在/****space*****/提示行下面。#include<string.h>#include<ios...
题目:下面函数chnum将一个整数字符串转换为一个整数。
注意:空在/****space*****/提示行下面。
#include<string.h>
#include<iostream.h>
int chnum (char *str)
{
int i,j,k,h,len,num=0;
int L=n=strlen(str);
/***********SPACE***********/
for(i=0;【?】;i++)
{
k=1;
j=len=len-1;
cout<<len<<endl;
/***********SPACE***********/
while (【?】)
{
k=k*10;
j--;
}
/***********SPACE***********/
h=【?】-'0';
/***********SPACE***********/
num=num+h*【?】;
}
return num;
} 展开
注意:空在/****space*****/提示行下面。
#include<string.h>
#include<iostream.h>
int chnum (char *str)
{
int i,j,k,h,len,num=0;
int L=n=strlen(str);
/***********SPACE***********/
for(i=0;【?】;i++)
{
k=1;
j=len=len-1;
cout<<len<<endl;
/***********SPACE***********/
while (【?】)
{
k=k*10;
j--;
}
/***********SPACE***********/
h=【?】-'0';
/***********SPACE***********/
num=num+h*【?】;
}
return num;
} 展开
1个回答
展开全部
int chnum (char *str)
{
int i,j,k,h,len,num=0;
int L=strlen(str);
len=L;
/***********SPACE***********/
for(i=0;i<L;i++)
{
k=1;
j=len=len-1;
cout<<"len:"<<len<<endl;
/***********SPACE***********/
while (j>0)
{
k=k*10;
j--;
}
/***********SPACE***********/
h=str[i]-'0';
/***********SPACE***********/
num=num+h*k;
}
return num;
}
void main()
{
char str[20];
cout<<"input the string of number:"<<endl;
cin>>str;
cout<<"int:"<< chnum(str);
}
{
int i,j,k,h,len,num=0;
int L=strlen(str);
len=L;
/***********SPACE***********/
for(i=0;i<L;i++)
{
k=1;
j=len=len-1;
cout<<"len:"<<len<<endl;
/***********SPACE***********/
while (j>0)
{
k=k*10;
j--;
}
/***********SPACE***********/
h=str[i]-'0';
/***********SPACE***********/
num=num+h*k;
}
return num;
}
void main()
{
char str[20];
cout<<"input the string of number:"<<endl;
cin>>str;
cout<<"int:"<< chnum(str);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询