Question: A 3 - character string, inString, is read from input. Check if the first and second characters in inString are digit characters. Replace the digit

A 3-character string, inString, is read from input. Check if the first and second characters in inString are digit characters. Replace the digit characters (if any) with '%'. If neither character is a digit, inString is not changed.
Ex: If the input is 475, then the output is:
%%5
Ex: If the input is 5hf, then the output is:
%hf #include
#include
#include
using namespace std;
int main(){
string inString;
getline(cin, inString);
/* Your code goes here */
cout << inString << endl;
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!