Question
Convert C++ program to pep8 assembly: #include stdafx.h #include #include #include using namespace std; //function declaration char Convert_uppercase(char l) { //convert lowercase to uppercase if
Convert C++ program to pep8 assembly:
#include "stdafx.h"
#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' << endl;
// 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:" << uppercase << endl;
//Display next character
cout << "Incremented Character:" << static_cast
}
else
{
//display not a character
cout << "NOT a character:" << lowercase << endl;
}
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