摘要:
#include <iostream> #include <Windows.h> using namespace std; void Change1(int*& a, int*& b) { int* tmp = a; a = b; b = tmp; } int main() { int a = 6,
阅读全文
posted @ 2023-07-16 17:33
wshidaboss
阅读(8)
推荐(0)
编辑
摘要:
第一个函数的任务是判断 string 对象中是否含有大写字母,无须修改参数的内容,因此将其设为常量引用类型。第二个函数需要修改参数的内容,所以应该将其设定为非常量引用类型。满足题意的程序如下所示: #include <iostream> #include <Windows.h> using name
阅读全文
posted @ 2023-07-16 12:48
wshidaboss
阅读(53)
推荐(0)
编辑