Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can someone help me with my assignment? I'm using assembly language. (x86 assembly, machine code). I need to write a code for this assignment. But

Can someone help me with my assignment? I'm using assembly language. (x86 assembly, machine code). I need to write a code for this assignment. But not to sure how to start to write code for this assignment. I want to write code for this assignment. Can someone help me to write a code step by step? Please I need help. I struggling in this class because my code is always wrong. I want to pass this class. Please, someone, help me as soon as possible??

This is my assignment:

A prime number is an integer that is divisible only by 1 and by itself. Write a program that:

1. Takes a number as an input.

2. Prints back to the console all the primes that are larger than 1 but not larger than the number that has been entered.

You need to have a procedure called isPrime. You may have more procedures if you like.

1. This procedure receives a number through one of the registers.

2. Checks if this number is prime.

3. Returns back through one of the registers to the main program 1, if the number is prime, 0 otherwise.

sample run:

Please enter a number: 44

Primes found until the given number:

2 3 5 7 11 13 17 19 23 29 31 37 41 43 Press any key to continue . . .

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions