C++
DuckyLoser
这个作者很懒,什么都没留下…
展开
-
实现简单的日期类:Date
Date.h #pragma once #include<iostream> using namespace std; class Date { public: Date(int year = 2018,int month = 7,int day = 19) :_year(year) ,_month(month) ,_day(day) ...原创 2018-07-25 11:18:54 · 314 阅读 · 0 评论 -
模拟实现atoi 函数
1.跳过前面的空白字符(例如空格,tab缩进)等,可以通过isspace( )函数来检测; 2.遇上数字或正负符号才开始转换,而在遇到非数字或’\0’才结束转换,并将结果返回。 3.如果 ptr不能转换成 int 或者 ptr为空字符串,那么将返回 0。 4.该函数要求被转换的字符串是按十进制数理解的。 #include<iostream> using namespace s...原创 2018-08-28 16:37:25 · 265 阅读 · 0 评论