我的编码或数据类型有问题。错误说“表达式必须具有指向对象的类型”。我不知道如何解决这个问题。
#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;
}
请问,有没有人知道你的解决方案?