Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

c++ greeting card generator

Rating
-
Sold
-
Pages
8
Grade
A
Uploaded on
18-01-2026
Written in
2024/2025

GREETING CARD COMPANY CODE, CUSTOMER SERVICE CODE, STRING MANIPULATOR CODE, CAPITALIZE SENTENCES IN A PARAGRAPH CODE

Institution
Course

Content preview

BS(IT),SEMESTER#01
UROOJ ASGHAR KHAN
O2-135242-006
02-135242-006

TASKS



Task 1: GREETING CARD COMPANY

Imagine a greeting card company that allows customers to personalize their greeting
cards with custom messages. One of the features provided by the company is the ability
to replace specific words in their messages with other words.

This is particularly useful for creating a consistent theme across multiple cards, such as
changing "Birthday" to "Anniversary" or "Congratulations" to "Well Done". The
company has tasked you with developing a software solution that will allow customers
to easily make these changes to their messages.




CODE:

#include <iostream>
#include <string>
#include <vector>

using namespace std;

void replaceWord(string &message, const string &oldWord, const string &newWord) {
size_t position = 0;

while ((position = message.find(oldWord, position)) != string::npos) {
message.replace(position, oldWord.length(), newWord);

, BS(IT),SEMESTER#01
UROOJ ASGHAR KHAN
O2-135242-006
02-135242-006

position += newWord.length();
}
}

int main() {
string message;
int numReplacements;

cout << "Enter your greeting message: ";
getline(cin, message);

cout << "How many words would you like to replace? ";
cin >> numReplacements;
cin.ignore();

for (int i = 0; i < numReplacements; ++i) {
string oldWord, newWord;

cout << "Enter the word to replace: ";
getline(cin, oldWord);

cout << "Enter the replacement word: ";
getline(cin, newWord);

replaceWord(message, oldWord, newWord);
}

cout << "\nUpdated Greeting Message: " << message << endl;

return 0;
}


Output:

Written for

Course

Document information

Uploaded on
January 18, 2026
Number of pages
8
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$8.99
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
uroojkhan1

Also available in package deal

Get to know the seller

Seller avatar
uroojkhan1 Bahria university
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
3 months
Number of followers
0
Documents
13
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions