Computer Science, asked by sumedha2371, 4 months ago

1. Cascade the following modules of the different C++ programs :-
a. cout << "Last call for the Titanic ";
cout << " going ";
cout << "going ";
cout << "gone ";

b. cout << "Average = ";
cout << ave ;
cout << "Sum = ";
cout << sum ;

c. cin >> length ;
cin >> breadth ;
cin >> area ;

d. cin >> years ;
cin >> months ;
cin >> days;

Write the programs above, so that each statement is output on a different line. Do it using endl and "\n"​

Answers

Answered by Anonymous
10

Answer:

Cascade the following modules of the different C++ programs :-

a. cout << "Last call for the Titanic ";

cout << " going ";

cout << "going ";

cout << "gone ";

b. cout << "Average = ";

cout << ave ;

cout << "Sum = ";

cout << sum ;

c. cin >> length ;

cin >> breadth ;

cin >> area ;

d. cin >> years ;

cin >> months ;

cin >> days;

Write the programs above, so that each statement is output on a different line. Do it using endl and "\n"

Answered by subbasrijana111
0

Answer:

dont know show me how to do

Similar questions