aboutsummaryrefslogtreecommitdiffstats
path: root/ee2301/baseConvert.cpp
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2019-10-15 10:37:14 -0500
committerRossTheRoss <msattr@gmail.com>2019-10-15 10:37:14 -0500
commit97e180dba809e461f7ba8c4a370156811375cdf9 (patch)
treea0a65af76ebfe4ac3a58f6d0ec88eef78296ff31 /ee2301/baseConvert.cpp
parentfix the oopsies (diff)
downloadhomework-97e180dba809e461f7ba8c4a370156811375cdf9.tar
homework-97e180dba809e461f7ba8c4a370156811375cdf9.tar.gz
homework-97e180dba809e461f7ba8c4a370156811375cdf9.tar.bz2
homework-97e180dba809e461f7ba8c4a370156811375cdf9.tar.lz
homework-97e180dba809e461f7ba8c4a370156811375cdf9.tar.xz
homework-97e180dba809e461f7ba8c4a370156811375cdf9.tar.zst
homework-97e180dba809e461f7ba8c4a370156811375cdf9.zip
Funstuff
Diffstat (limited to 'ee2301/baseConvert.cpp')
-rw-r--r--ee2301/baseConvert.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/ee2301/baseConvert.cpp b/ee2301/baseConvert.cpp
new file mode 100644
index 0000000..486a68f
--- /dev/null
+++ b/ee2301/baseConvert.cpp
@@ -0,0 +1,54 @@
+// C program to convert a number from any base
+// to decimal
+#include <stdio.h>
+#include <string.h>
+
+// To return value of a char. For example, 2 is
+// returned for '2'. 10 is returned for 'A', 11
+// for 'B'
+int val(char c)
+{
+ if (c >= '0' && c <= '9')
+ return (int)c - '0';
+ else
+ return (int)c - 'A' + 10;
+}
+
+// Function to convert a number from given base 'b'
+// to decimal
+int toDeci(char *str, int base)
+{
+ int len = strlen(str);
+ int power = 1; // Initialize power of base
+ int num = 0; // Initialize result
+ int i;
+
+ // Decimal equivalent is str[len-1]*1 +
+ // str[len-1]*base + str[len-1]*(base^2) + ...
+ for (i = len - 1; i >= 0; i--)
+ {
+ // A digit in input number must be
+ // less than number's base
+ if (val(str[i]) >= base)
+ {
+ printf("Invalid Number");
+ return -1;
+ }
+
+ num += val(str[i]) * power;
+ power = power * base;
+ }
+
+ return num;
+}
+
+// Driver code
+int main()
+{
+ char str[] = "11A";
+ int base = 16;
+ printf("Decimal equivalent of %s in base %d is "
+ " %d\n",
+ str, base, toDeci(str, base));
+ return 0;
+}