[c++期末100题]将字符串 s 转化为整型数返回。注意负数处理方法。

[c++期末100题]将字符串 s 转化为整型数返回。注意负数处理方法。,第1张

[c++期末100题]将字符串 s 转化为整型数返回。注意负数处理方法。 题目要求
 
代码 
#include
#include  
using namespace std; 
void grading(); 
 
 
int atoi(char s[]) 
{ 
 int num = 0; 
 int i = (s[0] == '-' ? 1 : 0); 
 for (; s[i] != ''; i++) 
 { 
 	num = num * 10 + (s[i] - '0'); 
 } 
 if (s[0] == '-') 
 	num = -num; 
 return num; 
}


int main() 
{ 
 char num1[20] = "-123"; 
 char num2[20] = "456"; 
 cout<					
										


					

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5520656.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存