This is in c++ 1. Prompt the user to enter a string of their choosing and output the string. 2. Complete the GetNumOfCharacters() function, which returns the number of characters in the user's string. Encouraged to use a for loop. 3. In main(), call the GetNumOfCharacters() function and then output the returned result. 4. Implement the OutputWithoutWhitespace() function. OutputWithoutWhitespace() outputs the string's characters except for whitespace (spaces, tabs). Note: A tab is '\t'. Call the OutputWithoutWhitespace() function in main().  My issue is deleting the spaces. I googled how to delete spaces, but there are terms I haven't learned yet. I'm not sure how to delete the spaces. This is what I have:  #include #include using namespace std; //Returns the number of characters in usrStr int GetNumOfCharacters(const string usrStr) { int count = 0; unsigned int i; for (i = 0; i < usrStr.size(); ++i) { ++count; } return count; } void OutputWithoutWhitespace(string usrStr) { unsigned int i; for (i = 0; i < usrStr.size(); ++i) { if ((usrStr.at(i) == ' ') | (usrStr.at(i) == '\t')) { usrStr.at(i) = '\0'; } } } int main() { string userInput; cout << "Enter a sentence or phrase:" << endl << endl; getline(cin, userInput); cout << "You entered: " << userInput << endl << endl; cout << "Number of characters: " << GetNumOfCharacters(userInput) << endl; OutputWithoutWhitespace(userInput); cout << "String with no whitespeace: " << userInput; return 0; }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

This is in c++

1. Prompt the user to enter a string of their choosing and output the string.

2. Complete the GetNumOfCharacters() function, which returns the number of characters in the user's string. Encouraged to use a for loop.

3. In main(), call the GetNumOfCharacters() function and then output the returned result.

4. Implement the OutputWithoutWhitespace() function. OutputWithoutWhitespace() outputs the string's characters except for whitespace (spaces, tabs). Note: A tab is '\t'. Call the OutputWithoutWhitespace() function in main(). 

My issue is deleting the spaces. I googled how to delete spaces, but there are terms I haven't learned yet. I'm not sure how to delete the spaces.

This is what I have: 

#include <iostream>
#include <string>
using namespace std;

//Returns the number of characters in usrStr
int GetNumOfCharacters(const string usrStr) {
int count = 0;
unsigned int i;
for (i = 0; i < usrStr.size(); ++i) {
++count;
}
return count;
}

void OutputWithoutWhitespace(string usrStr) {
unsigned int i;

for (i = 0; i < usrStr.size(); ++i) {
if ((usrStr.at(i) == ' ') | (usrStr.at(i) == '\t')) {
usrStr.at(i) = '\0';
}
}

}


int main() {
string userInput;

cout << "Enter a sentence or phrase:" << endl << endl;

getline(cin, userInput);
cout << "You entered: " << userInput << endl << endl;


cout << "Number of characters: " << GetNumOfCharacters(userInput) << endl;

OutputWithoutWhitespace(userInput);

cout << "String with no whitespeace: " << userInput;
return 0;
}

 

 

Thank you.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Knowledge Booster
Types of Loop
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education