Assignment 1 ------------ Read/Skim Chapters 1-3 Assigned: Tuesday January 14 Due: Tuesday January 21 Questions 1&2 are due before class Program is due at midnight 1. Send a message to the class' private mailing list, this may include subscribing (or joining the list: CSCI1730@listserv.uga.edu introducing yourself. 2. Email a digital picture of yourself (Send it via an email attachment (jpg) to maria@cs.uga.edu). * For people that don't have a digital camera: I will bring a digital camera to class this Thursday or Wednesday 3. Write a program that reads in two integers and determines and prints if the first is a multiple of the other or not. HINT: use the modulus operator. For example an even number is multiple of 2. In this case any multiple of two leaves a ramainder of zero when divided by 2. The output should include the values of the numbers that your program read from standard input. How to Submit your First Program -------------------------------- You must submit the following files (i.e., all the files necessary to compile your program): README.txt multiple.cpp Makefile README.txt is a file that tells us how to run and compile your program. Makefile is a file that enables us to compile your program, this file has a specific format. I will provide an example makefile accessible from the website. multiple.cpp is a file containing your program. To submit the files, you will need to use the submit program. Your files need to be under a common subdirectory called "1730_program1". If the 1730_program1 subdirectory is directly under your home directory you execute the below command line while in your homedirectory: submit 1730_program1 cs1730 NOTE: you need to be LOGGED ONTO ajax when you execute the command