蓝桥杯 试题 基础练习 报时助手

map用法
水题

#include<bits/stdc++.h>

using namespace std; 

int main()
{
	pair<int,string>temp[] = {{0,"zero"}, {1, "one"}, {2,"two"}, {3,"three"}, 
		{4,"four"}, {5,"five"}, {6,"six"},{7,"seven"}, {8,"eight"}, {9,"nine"}, 
		{10,"ten"}, {11,"eleven"}, {12,"twelve"}, {13,"thirteen"}, {14,"fourteen"},
		{15,"fifteen"}, {16,"sixteen"},{17,"seventeen"}, {18,"eighteen"}, 
		{19,"nineteen"}, {20,"twenty"},{30,"thirty"},{40,"forty"},
		{50,"fifty"},{60,"sixty"}};
	map<int,string>hash;
	for(int i = 0; i < 25; i++)
	{
		hash[temp[i].first] = temp[i].second;
	}
	int h,m;
	cin>>h>>m;
	if(h > 20)
	{
		cout<<hash[20]<<" "+hash[h%20]<<" ";
	}
	else
	{
		cout<<hash[h]<<" ";
	}
	if(m == 0)
	{
		cout<<"o'clock";
	}
	else
	{
		if(m > 20)
		{
			int mod = m%10;
			m = m - mod;
			cout<<hash[m]<<" "<<hash[mod];
		}
		else
		{
			cout<<hash[m];
		}
	}
	return 0;
}

发布了177 篇原创文章 · 获赞 6 · 访问量 6388

猜你喜欢

转载自blog.csdn.net/qq_45585519/article/details/104669579