CSCE 3110 Data Structures Assigment 1: C++ warmup Total: 45 points Issued: 01/29/2007 Due: 02/05/2007 ................................ 1. (15 points) Write a c/c++ program to read from a file that contains a list of floating numbers, calculate their summation, and print out the summation. Users specify the file name. Please refer to http://www.cse.unt.edu/~huangyan/3110/sampleProg/io.txt 2. (15 points) Implement a c++ template that returns the larger one of two given values. Test your template on int, float, and string. Refer to: http://www.cse.unt.edu/~huangyan/3110/sampleProg/swapTemplate.txt 3. (15 points) Write a program to read from standard input a list integer numbers and out put their summation. Test numbers from the standard input: 1 34 2 34 12 67 22 You program should output: 172 Please refer to: http://www.cse.unt.edu/~huangyan/3110/sampleProg/readNum.txt Submission instructions: - write a README file including the answers to problems 1-3, and a detailed note about the functionality of each of the above programs, and complete instructions on how to run them. - make sure you include your name in each program and in the README file. - make sure all your programs are fully commented, and compile and run correctly on the CSP machines. - submit your assignment by the due date using the 'project' program. class code is 3110s001 and the project name is "warmup".