Homework 9 Due November 12, 2002 Solutions 1a) True 1b) True 1c) False (the user can enter the numbers on two lines - in other words, the user can type after each number) 1d) False 1e) True 2a) x: 5 y: 28 ch: '3' 2b) x: 28 y: 36 ch: '5' 2c) x: 5 y: 8 ch: '2' 2d) x: 5 y: 28 ch: ' ' 6) #include #include using namespace std; int main() { int num1, num2; ifstream infile; ofstream outfile; infile.open("input.dat"); outfile.open("output.dat"); infile>>num1>>num2; outfile<<"Sum = "<