10 January 2018

UVA 10921 - Find the Telephone

/***
Md. Nazmul Hasan
Shahjalal University of Science & Technology,Sylhet.
hasan08sust@gmail.com
***/
#include<iostream>
#include<cstdio>
#include<stack>
#include<queue>
#include<map>
#include<vector>
#include<algorithm>
#include<cstring>
#include<sstream>
#include<cmath>
#include <iomanip>
using namespace std ;
typedef long long ll ;
typedef int in ;
typedef unsigned long long ull ;
const double pi = 2*acos(0) ;
#define maxi 40000
#define pf printf
#define sc scanf
#define pb push_back
#define MEM(x,y) (memset((x),(y),sizeof(x)))
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#define MAX(x,y) ((x) > (y) ? (x) : (y))
#define load(array,size)  for(int i=0 ; i<size ; i++) cin>>array[i]  ;
#define new_line  pf("\n")
#define clear_data(array) memset(array,0,sizeof(array))
#define highest_int 2147483647


int main()
{
   char str[10001];

   while(gets(str))
   {
       for(int i=0 ; i<strlen(str) ; i++)
       {
           if(str[i]=='1' || str[i]=='0' || str[i]=='-')
           {
               pf("%c",str[i]);
               continue;
           }
           else if(str[i]>='A' && str[i]<='C')
            pf("2");
           else if(str[i]>='D' && str[i]<='F')
            pf("3");
           else if(str[i]>='G' && str[i]<='I')
            pf("4");
           else if(str[i]>='J' && str[i]<='L')
            pf("5");
           else if(str[i]>='M' && str[i] <='O')
            pf("6");
           else if(str[i]>='P' && str[i]<='S')
            pf("7");
           else if(str[i]>='T' && str[i]<='V')
            pf("8");
           else if(str[i] >='W' && str[i]<='Z')
            pf("9");
       }
       pf("\n");
   }

    return 0;
}

No comments:

Post a Comment

UVA 10679 - I Love Strings!!