AcWing 2876. 日期识别
原题链接
简单
作者:
acwing_陌路
,
2021-02-21 11:41:31
,
所有人可见
,
阅读 556
最愚蠢的模拟写法~
不动脑子~
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <string>
using namespace std;
int main()
{
string s;
cin >> s;
for(int i = 0;i < s.size();i++)
{
if(s[0] == 'J')
{
if(s[1] == 'a')
{
cout << "1" << ' ';
break;
}
else
{
if(s[2] == 'n')
{
cout << "6" << ' ';
break;
}
else
{
cout << "7" << ' ';
break;
}
}
}
if(s[0] == 'F')
{
cout << "2" << ' ';
break;
}
if(s[0] == 'M')
{
if(s[2] == 'r')
{
cout << "3" << ' ';
break;
}
else
{
cout << "5" << ' ';
break;
}
}
if(s[0] == 'A')
{
if(s[1] == 'p')
{
cout << "4" << ' ';
break;
}
else
{
cout << "8" << ' ';
break;
}
}
if(s[0] == 'S')
{
cout << "9" << ' ';
break;
}
if(s[0] == 'O')
{
cout << "10" << ' ';
break;
}
if(s[0] == 'N')
{
cout << "11" << ' ';
break;
}
if(s[0] == 'D')
{
cout << "12" << ' ';
break;
}
}
for(int i = 0;i < s.size();i++)
{
if(s[3] == '0')
{
cout << s[4] << endl;
break;
}
else
{
cout << s[3] << s[4] << endl;
break;
}
}
return 0;
}