#include #include using namespace std; int main() { char c1 = 'F', c2; int i1 = 50, i2; double d1 = 123e-3, d2; bool b1 = true, b2 = false; char *s1 = "Hallo, World!"; cout << setw(10) << c1 << endl; cout << setw(10) << i1 << endl; cout << setw(10) << d1 << endl; cout << setw(10) << b1 << setw(10) << b2 << endl; cout << setw(10) << s1 << endl; return 0; }