From db001bfa44f1401a0380b642531df46b101d4207 Mon Sep 17 00:00:00 2001 From: Kevin <kevin.hoellring@fau.de> Date: Tue, 29 Oct 2019 15:21:18 +0100 Subject: [PATCH] Fix name of standard input stream --- src/task_5.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/task_5.cpp b/src/task_5.cpp index c769104..3a0e504 100644 --- a/src/task_5.cpp +++ b/src/task_5.cpp @@ -2,10 +2,9 @@ /* For this task, read in a number n on cin. -Following that there will be n distinct integers to be read from stdin. -Once these numbers have been read, one more integer k between 0 and n (at most n-1) will be provided. -Print out the k'th largest of the n numbers previously read from stdin +Following that there will be n distinct integers to be read from cin. +Once these numbers have been read, one more integer k between 0 and n (at most +n-1) will be provided. Print out the k'th largest of the n numbers previously +read from stdin */ -int main(int argc, char **argv) { - return 0; -} \ No newline at end of file +int main(int argc, char** argv) { return 0; } -- GitLab