Design a program that prompts the user to enter a string

Assignment Help Basic Computer Science
Reference no: EM13308365

Design a program that prompts the user to enter a string. The program should then display the number of vowels and the number of consonants in the string. I am absolutely lost and don't even know how to start, any assistance would be appreciated.

I will also provide the pseudocode that was provided by the teacher, if it helps at all:

// main module
Module main()
// Variables
Declare String str
Declare Integer index
Declare Integer vowels = 0
Declare Integer consonants = 0
// Get input from the user.
Display "Enter a string."
Input str

// Scan the string counting vowels and consonants.
For index = 0 To length(str) - 1
If isVowel(str(index)) Then
Set vowels = vowels + 1
Else If isConsonant(str(index)) Then
Set consonants = consonants + 1
End If
End For
// Display the results.
Display "Vowels: " , vowels
Display "Consonants: " , consonants
End Module
// The isVowel function returns True if the argument
// is a vowel, or False otherwise.
Function Boolean isVowel(String ch)
Declare Boolean status // Flag
// Convert the argument to uppercase.
ch = toUpper(ch)
// Is ch a vowel?
If ch == "A" OR ch == "E" OR
ch == "I" OR ch == "O" OR
ch == "U" Then
Set status = True
Else
Set status = False
End If
Return status
End Function
// The isConsonant function returns True if the argument
// is a consonant, or False otherwise.
Function Boolean isConsonant(String ch)
Declare Boolean status // Flag
// Is ch a letter?
If isLetter(ch) Then
// Is ch not a vowel?
If NOT isVowel(ch) Then
Set status = True
Else
Set status = False
End If
Else
Set status = False
End If
Return status
End Function

 

Reference no: EM13308365

Questions Cloud

What is its height of the tower on a hot day : An iron tower in is 317 meters tall on a cold day (T = -9.9 degrees Celsius). What is its height of the tower on a hot day
Write a windows application that gets names : When designing the GUI, consider initially disabling the e-mail textbox and the button until all information is entered. Redisable them when the button is clicked. Note that you can also use the Tab Index property of GUI objects to set their order..
What is the force acting on a hatch : A submarine dives to a depth of 157 feet in the ocean. What is the force (in pounds) acting on a hatch
Strategy formulation and entry strategies for multinational : 1.Strategy Formulation and Entry Strategies for Multinational Corporations (MNC)(ie internal and external factors when entering international markets).
Design a program that prompts the user to enter a string : Design a program that prompts the user to enter a string. The program should then display the number of vowels and the number of consonants in the string. I am absolutely lost and don't even know how to start, any assistance would be appreciated.
Government measures to achieve the economic performance : Conduct research on the economic performance of United State of America over the last ten years from 2004 to 2013, applying the macroeconomic indicators of real GDP, real GDP growth rate, real GDP per capita, unemployment rate and inflation rate to a..
How do we make jar files : How do we make Jar files? What is a Jar file? How do we control what is in them? How do we make a Jar file executable?
How much energy is required to boost it to the new orbit : The space shuttle is in a 400km - high circular orbit. It needs to reach a 700 km -high circular orbit to catch the Hubble Space Telescope for repairs. how much energy is required to boost it to the new orbit
Determine what is the vial radius of curvature in meters : After moving the bubble four divisions off center, the reading is 1.410 m. For 2-mm vial divisions, what is (a) the vial radius of curvature in meters and (b) the angle in seconds subtended by one division

Reviews

Write a Review

Basic Computer Science Questions & Answers

  Computing new computer cost at the end of year

Assume that 5 years from now you would like to trade in the computer and purchase a new one. You expect at 5 % increase in price each year. What would the new computer cost at the end of year 5?

  Probability and statistics for computer science

Probability and Statistics for Computer Science  - What is the probability that V will get the project and if V gets the project, what is the probability that W did not bid

  Evaluate following integrals using simpson rule

Evaluate following integrals using simpson's rule and corrected simpson's rule (or richardson extrapolation in case the corrected simpson's is not applicable). In each case, use n = 2,4,8,16,32.

  Write a program that reads in an integer

Write a program that reads in an integer, and breaks it into a sequence of individual digits. For example, the input 16384 is displayed as 1 6 3 8 4 You may assume that the input has no more than five digits and is not negative

  What do you mean by ascii or ebcdic

What is ASCII or EBCDIC? What part do the aforementioned things play in hashing? What is the formula for the PPD? What does the numerator and denominator say about the potential performance issues of this metric?

  Calculate the first n amount of terms of following sequence

if given x0=5, x1=2 and xi=(2xi-1+ 2xi-2) use c++ to calculate the first n amount of terms of this sequence. Using only recursion

  What are the primary tasks of a system administrator

what are the primary tasks of a system administrator? 2. What does each task accomplish

  Class named commission that includes two numeric variables

Create a class named Commission that includes two numeric variables: a sales figure and a commission rate. Also create two overloaded methods name computeCommission(). The first method takes two numeric arguments representing sales and rate, multi..

  Find an equation of the line perpendicular to p1

find an equation of the line perpendicular to p1 and intersecting the line x(t)=t+1,y(t) = 3-t, z(t) = 5t+4 at the point corresping to t=2.

  Why is counter initialization important

Why is counter initialization important?

  How could a business use information technology

How could a business use information technology to increase switching costs and lock in its customers and suppliers? Use business examples to support your answers

  A calculator application that allows prefix, infix and postf

A calculator application that allows prefix, infix, and postfix expressions to be evaluated (i.e., allows all 3 types of expressions

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd