Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Declare k, d, and s so that they can store an integer, a real number, and a smal

ID: 3651681 • Letter: D

Question

Declare k, d, and s so that they can store an integer, a real number, and a small word (under 10 characters).

Use these variables to first read in an integer, a real number, and a small word and print them out in reverse order (i.e., the word, the real, and then the integer) all on the same line, separated by at least one space from each other.

Then, on a second line, print them out in the original order (the integer, the real, and the word), separated again by at least one space from each other.

Explanation / Answer

#include int main() { int k; float d; string s; cin>>k; cin>>d; cin>>s; cout