コーディングまたはデータ型に問題があります。エラーは、「式にはオブジェクトへのポインター型が必要です」と表示されます。これを修正する方法がわかりません。
#include <iostream>
#include <conio.h>
using namespace std;
int main() {
int id, year, dates;
cout << "Enter the ID number ";
cin >> id;
year = id[0] + id[1] + 1900;
cout << year;
getch();
return 0;
}
お願いします、これに対する解決策を知っている人はいますか?