#include<iostream>using namespace std;#define Day 7int main(){ cout<<"一周有"<<Day<<"天"<<endl; const int month=12; cout<<"一年有"<<month<<"月"<<endl; system("pause");}