中英文123456789數字和字母之間的相互轉換

#include "stdafx.h"
#include <cstring>
#include <conio.h>
#include <iostream>
#include <ostream>
#include <vector>
#include <cmath>
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <sstream>

using namespace std;


void Exersize4_6()
{
	cout<<"這是一個num英文轉換程序"<<endl;
	cout<<"你可以輸入0-9數字and對應的英文拼寫"<<endl;
// 	cout<<"輸入數字按1,輸入英文按2:";
	vector<string> szVecNum(10);
	szVecNum[0]="zero";
	szVecNum[1]="one";
	szVecNum[2]="two";
	szVecNum[3]="three";
	szVecNum[4]="four";
	szVecNum[5]="five";
	szVecNum[6]="six";
	szVecNum[7]="seven";
	szVecNum[8]="eight";
	szVecNum[9]="nine";
	string szInput;
	bool bError=false;
	while(cin>>szInput)
	{
		int nChoice=-1;
		stringstream sinType(szInput);

		double t;
		char p;
		if(!(sinType >> t))
			nChoice=2;
		else if(sinType >> p)
			nChoice=2;
		else
			nChoice=1;


		if (nChoice==1)
		{
			int nTempInt=-1;
			nTempInt=atoi(szInput.c_str());

			if (nTempInt>=0&&nTempInt<=9)
			{
				cout<<szInput<<"in english is "<<szVecNum[nTempInt]<<endl;
			}
			else
			{
				cout<<"無法識別"<<endl;
			}
		}
		else if(nChoice==2)
		{
			for(int i=0;i<szVecNum.size();++i)
			{
				if (szVecNum[i]==szInput)
				{
					cout<<szVecNum[i]<<" is "<<i<<endl;
					bError=true;
				}

			}
			if(bError)
			{
				bError=false;
			}
			else
			{
				cout<<"無法識別"<<endl;
			}
		}
		else
		{
			cout<<"無法識別"<<endl;
		}
		cout<<"輸入數字按1,輸入英文按2:"<<endl;
	}


}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章