Q6: Convert the attached C++ program to JAVA program .
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question

Transcribed Image Text:Q6: Convert the attached C++ program to JAVA program .
bank.h // header file
class Bank{
private:
double deposit;
double interest;
double timeInYears;
public:
Bank();
Bank(double, double, double);
double simpleInterest(void);
void print(void);
};
Bank::Bank(){}
Bank::Bank(double
this->deposit = d;
this->interest = i;
double i, double t){
%3D
%3D
this->timeInYears = t;
}
double Bank::simpleInterest(0{
return (this->deposit * this->interest * this->timeInYears)/100;
}
void Bank::print(void){
cout<<"Simple Interest is: "<<this->simpleInterest()<<endl;
}
main.cpp // main file
#include<iostream>
#include "bank.cpp"
using namespace std;
int main(){
int nbanks;
list <Bank*> banks;
list<Bank*>::iterator it;
cout<<"Num of Banks: ";
cin>>nbanks;
for(int i=0; i<nbanks; i++){
double amount = rand()%200000 + 10; // min 10 and max 200k
double rate =rand()%10 + 1; // min 1 and max 10
double time = rand()%15 + 1; // min 1 and max 15
banks.push_back(new Bank(amount, rate, time));
}
// print
for (it=banks.begin(); it!=banks.end(); ++it){
(*it)->print();
}
%3D
return 0;
}
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 now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images

Recommended textbooks for you

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

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