can someone make the code on this activity

II. Procedures:

a. Create a program (Save as Act4.asm) that will ask the user to input a 2 digit number. Compute and display the sum of these numbers. Assume that the sum will only yield a single digit (maximum value of 9).

Sample Output:

Enter a 2 digit number>> 33

YOU TYPED >> 33
The sum of >> 3 and 3 is 6


Enter a 2 digit number>> 54

YOU TYPED >> 54
The sum of >> 5 and 4 is 9


Hint: if you add the contents of two registers (ADD al,bl), the processor adds the bit contents of the registers not their character equivalent.

Example:

al = 00110001b or 31h ;Corresponds to ‘1’
bl = 00110110b or 36h ;Corresponds to ‘6’

If we use the command ADD al,bl, the contents of al after execution of the command is 01100111b or 67h which corresponds to ‘g’ in the ASCII table. In most cases we would think that the contents of al would be ‘7’.

Oh dear. I recently used this over at DevShed, and now I fear I need to use here, too. Pity.

First off, we don't do other people's homework for them. Second, we don't do other people's homework for them. And third, we don't do other people's homework for them. Sensing a pattern here yet?

No one here will simply hand you a solution on a silver platter. If you show us what you've done, what you've tried to do, and what problems you've had with it, then we'll be happy to help. If you have specific questions, we can answer them, or at least point you in the right direction. If you have a program with a bug you can't swat on your own, we'll be glad to assist, so long as you pay attention to the forum rules and post sensible questions in an intelligent manner that we have some reasonable hope of answering.

But just cutting and pasting an assignment into a message, without even prefacing it with something like, "I have this homework problem that I can't solve...", is likely to get you booted from the message boards here and elsewhere - if you're lucky. What happens to you if you are unlucky is... well... let's just say that this guy probably won't be trying that again, on that forum or this one.

We take this issue seriously here. Very seriously. Asking us to do homework for you is a grave breach of academic ethics on your part, and actually doing so would be an even bigger breach on ours (not that this stops the many fine mercenaries at vWorker and Scriptlance, but still). Simply posting this here, in this way, could get you expelled from your school, if someone happens to notice it and blow the whistle on you. Furthermore, it does neither you nor us any good to help you cheat - especially since there's a good chance some day one of us will have to work with you, manage you, or, Eris forefend, fix code you've written. We have an obligation to our profession and our own future sanity to help you become a good programmer, and doing your coursework for you isn't going to do that.

And please don't insult our intelligence by claiming that it isn't a class assignment. It's very easy to spot one, and we have a lot of practice at it. Trust me on this.

As it happens, while the problem description looks somewhat daunting, it's actually quite simple. Now, if you don't know how to create a class that fits the requirements... hmmmn. Reading the book is definitely called for. As is speaking to the professor; while some can be a**holes about office hours, most are more than willing to give extra help, if only to keep their class grades from slipping to the point where they get re-assigned to teach remedial basketweaving.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.