正文: 在编程中,无论是OC还是C亦或是C++语言,所声明的整数变量都会在内存中占有固定的存储空间,而这些存储空间都是固定的。 比如我们知道的int、long、short、unsigend int、unsigend long、unsigend long long等等,都有固定的存储空间,而哪怕是64 ...
分类:
编程语言 时间:
2016-04-21 13:42:13
阅读次数:
364
需要注意的都在代码注释里,自己看吧,欢迎讨论。
#include
#include
#include
using namespace std;
//模拟手工加法
string add(string str1, string str2)
{
int i;
string str;
int len_str1 = str1.length();
int len_str2 = str2....
分类:
其他好文 时间:
2015-03-20 18:46:10
阅读次数:
141