Asked • 10/23/20

Translate from C++ to Pep/9

Take the following C++ program and translate it into Pep/9 assembly language

#include

using namespace std;

int age;

char first, last;

int main() {

  cin >> age;

  cin >> first >> last;

  cout << "Your age " << age << endl;

  cout << "Initials " << first << last << endl;

  if (age >= 30)

      cout << “Cannot trust\n”;

  return 0;

}


1 Expert Answer

By:

Patrick B. answered • 10/23/20

Tutor
4.7 (31)

Math and computer tutor/teacher

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.