我在學習指針和引用,但是我很難理解概念。我需要在主函數中聲明一個變量,然後通過用戶輸入的函數初始化它,而不返回任何內容。我試過了:初始化變量透過函數
#include <iostream>
using namespace std;
void input(int &num){
cout << "Enter A Number" << endl;
cin >> static_cast<int>(num);
}
int main(){
int x;
input(x);
cout << "The Number You Entered Was " << x << "!" << endl;
return 0;
}
然後呢? – Vijay