Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Expecting Output 1: Which alphabet list you would like to view? Please enter u for uppercase and l for lowercase: u ABCDEFGHIJKLMNOPQRSTUVWXYZ Expecting Output 2:

image text in transcribed

Expecting Output 1:

Which alphabet list you would like to view?

Please enter "u" for uppercase and "l" for lowercase: u

ABCDEFGHIJKLMNOPQRSTUVWXYZ

Expecting Output 2:

Which alphabet list you would like to view?

Please enter "u" for uppercase and "l" for lowercase: l

abcdefghijklmnopqrstuvwxyz

I want this code in C++ language, thank you.

Also, I can't list out abcdef... in cout. My teacher wants it in while loop using ASCII character set.

Program #2: Upper or Lower? This program will prompt the user as to whether they wish to view upper or lowercase letters. The user will then enter a response (for example, the letter 'u' for uppercase or ' for lowercase). So if the user were to select uppercase, the program should then display all the alphabetic letters in uppercase; if the user specifies lowercase, the program should display all the lowercase letters In order to test to see which character the user enters at the keyboaid, you'll need to test the value of variable and determine what's stored in it. This will require a simple "if" statement, which you can read about beginning on p.75. An example dealing with an integer is on p.76, and the syntax requirements is on p.77. (t would probably be wise to first write some quick throw-away code to experiment with if/else statements so you have a good feeling about them.)

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

Recommended Textbook for

From Herds To Insights Harnessing Data Analytics For Sustainable Livestock Farming

Authors: Prof Suresh Neethirajan

1st Edition

B0CFD6K6KK, 979-8857075487

More Books

Students also viewed these Databases questions

Question

Distinguish between filtering and interpreting. (Objective 2)

Answered: 1 week ago