PA1 must be done individually - each student must accomplish it alone and submit it. Later assignments may allow students to work in pairs, but not this assignment.
hello.cpp
to print a very specific message to the screen. Specifically, create a new file named
hello.cpp
(use emacs or another editor), and make the following edits to this file.
Note: this is IMPORTANT, and you should make it a habit to include such a comment at the top of every program you ever write - especially for this class - from now on. |
//
).#include <iostream> using namespace std;
int main() { ... }
Hello! CS16 is fun.Be sure the message prints on two separate lines, and that a newline is printed after the second line too. There must not be any spaces before or after the text on either line. Make sure it matches the sample exactly.
~submit/submit -p 933 hello.cppBe sure to wait for the test results. If you score 50/50, and you've followed all of the other rules (e.g., name/date comment) then you'll earn full credit.
Note: you should have created an account and joined the class CS16_w18_costanzo on the submit.cs system during Lab01. If you need help to do that now or to submit/verify your program, see this help for submit.cs page from that lab.