#include void main() { int i; float f; char c1, c2; char str1[128], str2[128], str3[128]; cout << "Please type an int and a float: "; cin >> i >> f; cout << endl << "You typed: " << i << " and " << f << endl; cout << "Please type two characters: "; cin >> c1 >> c2; cout << endl << "You typed: " << c1 << " and " << c2 << endl; cout << "Please type three words: "; cin >> str1 >> str2 >> str3; cout << "You typed: " << str1 << "|" << str2 << "|" << str3 << endl; }