Skip to content
Snippets Groups Projects
Commit db001bfa authored by Kevin Höllring's avatar Kevin Höllring
Browse files

Fix name of standard input stream

parent f0fa8e12
No related branches found
No related tags found
No related merge requests found
Pipeline #31171 failed
......@@ -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; }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment