Hello. I'm working on run length encoding in C++ but I'm not sure where to start. Program requirements Use getline() to get a line of text from the user as input. The input from the user may contain alphabetic, punctuation, and whitespace characters. (Think about edge cases!) Additional info Recall that string objects are really just arrays of characters. ou can access the individual characters in a string using the [ ] notation. Example: sentence[3] == 'A' would compare the fourth position in the string sentence to see if it was equivalent to the ASCII character 'A'. The string object in C++ also has a method length() that will return how many characters are in the string. Example: int len = sentence.length() would assign the length of the string sentence to an integer variable called len.

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter9: Sequential Access Files And Menus
Section: Chapter Questions
Problem 6RQ: What type of object is created by the OpenText method? a. File b. SequenceReader c. StreamWriter d....
icon
Related questions
Question

Hello. I'm working on run length encoding in C++ but I'm not sure where to start.

Program requirements

  1. Use getline() to get a line of text from the user as input.
  2. The input from the user may contain alphabetic, punctuation, and whitespace characters.
  3. (Think about edge cases!)

Additional info

  • Recall that string objects are really just arrays of characters. ou can access the individual characters in a string using the [ ] notation. Example: sentence[3] == 'A' would compare the fourth position in the string sentence to see if it was equivalent to the ASCII character 'A'.
  • The string object in C++ also has a method length() that will return how many characters are in the string. Example: int len = sentence.length() would assign the length of the string sentence to an integer variable called len.
Sample Runs
Sample Run 1
Enter text to compress: a
la
Sample Run 2
Enter text to compress: aaaabbbbcccceee
4a4b4c3e
Sample Run 3
Enter text to compress: What is your favorite color?
1Wlhlaltl lilsl lylolulrl lflalvlolrliltlel lclolllolrl?
Transcribed Image Text:Sample Runs Sample Run 1 Enter text to compress: a la Sample Run 2 Enter text to compress: aaaabbbbcccceee 4a4b4c3e Sample Run 3 Enter text to compress: What is your favorite color? 1Wlhlaltl lilsl lylolulrl lflalvlolrliltlel lclolllolrl?
4
5 #include <fstream>
6 #include <iostream>
7
8 int main() {
9
10 std::string text;
11
12
13 ✓
14
15
16 ✓
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
int len text.length();
do {
}
std::cout<<"Enter text to compress: ";
getline(std::cin, text);
if (text == ) {
std::cout << text <<
}
std::cout <<< text << "\n";
for(int i = 0; i < text.length(); i++){
std::cout << text[i] << '\n';
}
Transcribed Image Text:4 5 #include <fstream> 6 #include <iostream> 7 8 int main() { 9 10 std::string text; 11 12 13 ✓ 14 15 16 ✓ 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 int len text.length(); do { } std::cout<<"Enter text to compress: "; getline(std::cin, text); if (text == ) { std::cout << text << } std::cout <<< text << "\n"; for(int i = 0; i < text.length(); i++){ std::cout << text[i] << '\n'; }
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Algebraic Expressions
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
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT