Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

80x86 code help please -- I have a C++ code that I'd like to see in 80x86 assembly language code to learn from. The code

80x86 code help please --

I have a C++ code that I'd like to see in 80x86 assembly language code to learn from.

The code below uses a dialog box to prompt for an integer n, computes the sum of the integers from 1 to n and uses a message box to display the sum.

I need to see this done in 80x86 assembly language :)

#include  using namespace std; int main() { int user_number, total = 0; cout << " Enter a positive number: "; cin >> user_number; while (user_number < 0) { cout << "ERROR: a positive number must be chosen "; cout << "Enter a positive number: "; cin >> user_number; // < 0 } for (int i = 1; i <= user_number; i++) { cout << total << "+" << i << " = "; total += i; cout << total << endl; } cout << "Total = " << total << endl << endl; return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started