Question
Translate C++ to pep/8 assembly (I've spent an enormous amount of time on this with no luck. ) #include #include #include using namespace std; //function
Translate C++ to pep/8 assembly
(I've spent an enormous amount of time on this with no luck. )
#include
#include
#include
using namespace std;
//function declaration
char Convert_uppercase (char l)
{
//convert lowercase to uppercase
if ((l >= 'a') && (l <= 'z'))
{
//return the charater
return l - 'a' + 'A';
}
}
int main()
{
//declare variables
char lowercase,uppercase;
cout<<"Enter Lower case character:";
//read user input character
cin>>lowercase;
//check if it is character 'z'
if(lowercase=='z')
cout<<"Converted to: "<<'A' < // check input is number or character else if((isalpha(lowercase))&&(lowercase!='z')) { //call conversion function uppercase=Convert_uppercase (lowercase); //Display the upper case cout<<"Uppercase:"< //Display next character cout<<"Incremented Character:"< } else { //display not a character cout<<"NOT a character:"< } system("pause"); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started