摘要: 编写一个函数 获取斐波那契数列每一项的值。 每调用一次返回一个值。 函数可以根据需要重复使用。 第一次尝试: #include <iostream> #include "add.h" using namespace std; int fib() { static int a0 = 0; static 阅读全文
posted @ 2024-02-05 10:58 老友不要辣 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 数组访问的一些思考 string类最大限度地考虑了C字符串的兼容性。 可以按照使用C字符串的方式适应string对象。 #include <iostream> #include "add.h" using namespace std; int main(void) { string s = "saf 阅读全文
posted @ 2024-02-05 10:15 老友不要辣 阅读(8) 评论(0) 推荐(0) 编辑