From f95296f4d16c343c17894f2e4e01095c414ee76c Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Wed, 19 Feb 2025 15:35:16 -0500 Subject: [PATCH] no new line at the end --- hws/online_dating/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/online_dating/README.md b/hws/online_dating/README.md index 20c5bdb..86f4240 100644 --- a/hws/online_dating/README.md +++ b/hws/online_dating/README.md @@ -67,7 +67,7 @@ Your program will support these commands: 5. block someone. -More details about each of these five commands are given below. For all five commands, *users.txt* represents the input file, and *output.txt* represents the output file, please do not hardcode the file names into your program, as the actual input/output file may have a different name. You should just use the *argv[]* array to retrieve the name of the input and the output file. Also note that all the expected output files contain an empty line at the end of file, to match with that, you just need to make sure to use *std::endl;* (or just *endl;* if you don't use *std::*) when printing the last line of a file. +More details about each of these five commands are given below. For all five commands, *users.txt* represents the input file, and *output.txt* represents the output file, please do not hardcode the file names into your program, as the actual input/output file may have a different name. You should just use the *argv[]* array to retrieve the name of the input and the output file. **Note**: for all the commands, you can assume the phone numbers (used in the commands) are valid and are corresponding to an existing account.