我不知道爲什麼結果是這樣的?我預計15 50 5 任何人可以幫助我瞭解的結果我不知道爲什麼結果是這樣的?我預計15 50 5
#include<iostream>
#include<conio.h>
using namespace std;
int f(int &a, int &b)
{
int m = a;
int n = b;
a = a*b;
b = a/b;
return n + m;
}
int main()
{
int x = 10;
int y = 5;
cout << f(x, y) << " " << x << " " << y;
_getch();
return 0;
}
//why is the result like this?
結果是像什麼? –
我不知道你得到了什麼,但預計是:15 50 10 –
vs 2015給我的結果是15 10 5. – Kasra