| | |
hexadecimal to Decimal number
Please support our C++ advertiser: Intel Parallel Studio Home
Hi Hi Hi
this solution is inverse of other solution that changed Decimal number to hexadecimal . It changes hexadecimal number to Decimal !
There is the other way to change characters to numbers.
Good Luck!
this solution is inverse of other solution that changed Decimal number to hexadecimal . It changes hexadecimal number to Decimal !
There is the other way to change characters to numbers.
Good Luck!
//16Radix number to Decimal //Programming by : Erfan Nasoori //Mail : ketn68@yahoo.com //Date of send : 2009/1/9 #include<iostream.h> #include<string.h> #include<math.h> #include<conio> void main() { int k=-1,j,i; double sum=0 ; int x[20]; char hexa[16]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; char s[20]; cout<<"Number in 16 radix : "; cin>>s; for(i=0 ; s[i] ; ++i) if(s[i] >= 'a' && s[i] <= 'z') s[i] -= 32; for(i=0 ; s[i] ; ++i) for(j=0 ; j<16 ; ++j) if(s[i] == hexa[j]) { x[++k]=j; } int y=strlen(s); for( i=(y-1) ,j=0 ; i>=0 ; --i , ++j) { sum += (pow(16,i)*x[j]); } cout<<"--------------------------------------------------"<<endl; cout<<"Radix 10 = "<<sum; getch(); }
Similar Threads
- hexadecimal to decimal (C)
- decimal to hexadecimal (C#)
- convert Decimal to Hexadecimal system.. (C)
- Decimal to Hexadecimal (Python)
- Code Snippet: Hexadecimal to Decimal (Python) (Python)
| Thread Tools | Search this Thread |
api array arrays based binary c++ c/c++ calculator char char* class classes code coding compile console conversion convert count database delete deploy desktop developer directshow dll download dynamic dynamiccharacterarray email encryption error file forms fstream function functions game givemetehcodez google graph gui homeworkhelp iamthwee ifstream input int java lib linkedlist linker linux list loop looping loops map math matrix memory multiple news number numbertoword output pointer problem program programming project python random read recursion recursive reference return rpg sorting string strings temperature template templates test text text-file tree unix url variable vector video visual visualstudio win32 windows winsock wordfrequency wxwidgets



