Hello I was wondering if anyone could help me with this programming assignment i
ID: 3780915 • Letter: H
Question
Hello I was wondering if anyone could help me with this programming assignment in C++. Thanks in advance! :Write a C++ program that displays something you did or that happened to you over the winter vacation in large letters on the screen. There should be no input just output. For example, I went to Las Vegas, so my program would display the following output: L A SSSSS V V EEEEE GGGG A SSSSS ! L A A S V V E G A A S ! L AAAAA SSSSS V V EEE G GGG AAAAA SSSSS ! L A A S V V E G G A A S LLLL A A SSSSS V EEEEE GGGG A A SSSSS !!! Generate the output using cout statements.
Explanation / Answer
#include <iostream>
using namespace std;
int main() {
cout<<"L A SSSSS V V EEEEE GGGG A SSSSS ! "; // display using cout
cout<<"L A A S V V E G A A S ! ";
cout<<"L AAAAA SSSSS V V EEE G GGG AAAAA SSSSS ! ";
cout<<"L A A S V V E G G A A S LLLL A A SSSSS V EEEEE GGGG A A SSSSS !!!";
return 0;
}
Output:
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.