摘要:
#include <iostream> using namespace std; void swap(int* a, int* b) { int tmp = *a; *a = *b; *b = tmp; } void selectSort(int ret[], int n) { for (int i 阅读全文
摘要:
通过下面的工作来改进String类声明(即将String1.h升级为String2.h)。 a. 对+运算符进行重载,使之可将两个字符串合并成一个。 b. 提供一个Stringlow()成员函数,将字符串中所有的字母字符转换为小写(别忘了cctype系列字符函数)。 c. 提供String()成员函 阅读全文
摘要:
找了一下网上的代码,都不怎么简洁明了,故特此记录。 #include <iostream> #include <math.h> using namespace std; int main() { int year = 0; double A = 100; double B = 100; while 阅读全文