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

  Which method would be efficient for planning proactive

Process-centered review of object oriented software development methodologies, ACM Computing Surveys (CSUR), Volume 40 Issue 1, February 2008, Raman Ramsin, and Richard F. Paige.

  Compare and contrast the following, in terms of cores

Compare and contrast the following, in terms of cores (or microprocessors), random access memory (RAM), disk storage, and networking capabilities. Supercomputers, Mainframe computers , Desktop, computers, Laptops, Handheld computers

  Privacy and security issues are inherent in data storage

Privacy and security issues are inherent in data storage. Let's consider the question of who owns the data about a particular person: medical, credit, personal, financial, consumer information, etc.?

  Code skeleton to declare a class named date

Complete the following code skeleton to declare a class named Date. The class should contain variables and functions to store and retrieve a data in the form 4/2/2012.

  Define the fibonacci binary tree of order n as follows

Define the Fibonacci binary tree of order n as follows: If n=0 or n=1, the tree consists of a single node. If n>1, the tree consists of a root, with the Fibonacci tree of order n-1 as the left subtree and the Fibonacci tree of order n-2 as the rig..

  Write a condition-controlled while loop

Write a condition-controlled while loop that allows the user to enter the calories they burned. Stop looping when the user enters a negative number. Display the Total and Average number of calories burned.

  Draw a state diagram for the state machine

Draw a state diagram for the state machine that checks if a binary number has an even or odd number of 0s.

  Write a one-page paper describing these new activities

Propose three to five additional activities you think should be added to a Gantt chart to help you estimate resources and durations. Write a one-page paper describing these new activities.

  In what ways do different types of seismic waves differ

In what ways do different types of seismic waves differ from waves on water.

  What do the following commands do

What do the following commands do

  Develop a fact-finding plan including interviews

Design a questionnaire that will go to a sample of Kahuna Cleaning Supply customers to find out if they were satisfied with the sales and ordering process.

  Write the method getcoinflips that takes a number of flips

Write the method getCoinFlips that takes a Coin and a number of flips as parameters. The method should return an array of the booleans produced by flipping the Coin the given number of times.

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