POJ 3981 string replacement

Source: Internet
Author: User

I. Question Information
String replacement
Time Limit: 1000 MS Memory Limit: 65536 K
Total Submissions: 7501 Accepted: 3560
Description

Write a C program to replace all "you" in the string with "we"
Input

Input contains multiple rows of data

Each row of data is a string of no more than 1000 characters.
Data ends with EOF
Output

For each line of input, output the replaced string
Sample Input

You are what you do
Sample Output

We are what we do

Ii. Reference Code

[Cpp]
# Include <string>
# Include <iostream>
Using namespace std;
Int main ()
{
String str;
While (getline (cin, str ))
{
String: size_type pos = 0;
While (pos = str. find ("you", pos ))! = String: npos ){
Str. replace (pos ++, 3, "we ");
}
Cout <str <endl;
}
Return 0;
}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.