#include
using namespace std;
Struct TimeStruct
{
int year;
int month;
int day;
int hour;
int min;
int fen;
};
int main()
{
TimeStruct Time;
cout<<"请输入年,月,日,时,分,秒!";
cin>> Time.year >> Time.month >> Time.day >> Time.hour >> Time.min >> Time.fen;
cout << Time.year << Time.month << Time.day << Time.hour << Time.min << Time.fen ;
return 0;
}
怎么就错了啊?有啥错误现象?
Struct 拼错了
应该都是小写