
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
What is this
![7
#include <iostream>
#include <string.h>
using namespace std;
int val (char c)
11 E {
8
9
10
if (c >= '0' && c <= '9')
return (int)c - '0';
else if (c >= 'A' && c <= 'z')
return (int)c - 'A' + 10;
12
13
14
15
16
else
return (int)c - 'a' + 10;
17
18
int toDeci(char *str, int base)
20 E {
19
int len =0;
while(str[len]!= '\0') {len++;}
int power = 1;
int num = e;
int i;
21
22
23
24
25
for (i = len - 1; i >= @; i--)
{
if (val(str[i]) >= base)
{
printf("Invalid Number");
return -1;
}
num +=val(str[i]) * power;
power = power * base;
26
27
28
29
30
31
32
33
34
return num;
}
int main ()
39 E {
37
38
char numbers[5][18];
cout<<"Enter five numbers in base 14 below\n";
for (int i=0;i<5;i++){
cout<<"Enter number "<<i+1<<" : ";
cin>>numbers[i];
}
cout<<"Number in 14th Base \tCorresponding Decimal Number\n";
for (int i=0;i<5;i++){
cout<<numbers[i]«"\t\t\t"<«toDeci(numbers[i],14)<<endl;
}
return e;
40
41
42 E
43
44
45
46
47
48
49
50
51
}
52
+ n6 7 00
mmm mm](https://content.bartleby.com/qna-images/question/290e95da-01cc-4bb9-9b0e-3b63d629a039/a2973f4b-8c8e-4645-8eab-164feaf68309/fyg96zw_thumbnail.png)
Transcribed Image Text:7
#include <iostream>
#include <string.h>
using namespace std;
int val (char c)
11 E {
8
9
10
if (c >= '0' && c <= '9')
return (int)c - '0';
else if (c >= 'A' && c <= 'z')
return (int)c - 'A' + 10;
12
13
14
15
16
else
return (int)c - 'a' + 10;
17
18
int toDeci(char *str, int base)
20 E {
19
int len =0;
while(str[len]!= '\0') {len++;}
int power = 1;
int num = e;
int i;
21
22
23
24
25
for (i = len - 1; i >= @; i--)
{
if (val(str[i]) >= base)
{
printf("Invalid Number");
return -1;
}
num +=val(str[i]) * power;
power = power * base;
26
27
28
29
30
31
32
33
34
return num;
}
int main ()
39 E {
37
38
char numbers[5][18];
cout<<"Enter five numbers in base 14 below\n";
for (int i=0;i<5;i++){
cout<<"Enter number "<<i+1<<" : ";
cin>>numbers[i];
}
cout<<"Number in 14th Base \tCorresponding Decimal Number\n";
for (int i=0;i<5;i++){
cout<<numbers[i]«"\t\t\t"<«toDeci(numbers[i],14)<<endl;
}
return e;
40
41
42 E
43
44
45
46
47
48
49
50
51
}
52
+ n6 7 00
mmm mm
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps

Knowledge Booster
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY