引用与函数输入输出
Posted 在某一天老去
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了引用与函数输入输出相关的知识,希望对你有一定的参考价值。
关于函数的输入输出,如果想要一个变量是输入变量,但同时改变值之后下次也需要使用最新值,可用引用&语法,见代码:
1 #include <iostream> 2 3 using namespace std; 4 5 void func(int &a, int &b, int &c); 6 int main() 7 { 8 int A = 1; 9 int B = 3; 10 int C = 0; 11 12 func(A,B,C); 13 14 cout << "C = " << C << endl; 15 cout << "B = " << B << endl; 16 cout << "A = " << A << endl; 17 18 system("pause"); 19 return 0; 20 21 } 22 23 24 void func(int &a, int &b, int &c) 25 { 26 c = b - a; 27 a = b; 28 }
以上是关于引用与函数输入输出的主要内容,如果未能解决你的问题,请参考以下文章
片段(Java) | 机试题+算法思路+考点+代码解析 2023
java缓冲字符字节输入输出流:java.io.BufferedReaderjava.io.BufferedWriterjava.io.BufferedInputStreamjava.io.(代码片段
解决未能加载文件或程序集“Newtonsoft.Json ...."或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)(代码片段