From 3f984dd76ef901fe27d93b18511c61cd794a71de Mon Sep 17 00:00:00 2001 From: Frenchris <34804391+Frenchris@users.noreply.github.com> Date: Thu, 2 May 2019 15:10:02 +0100 Subject: [PATCH] formating --- subjects/{addprimesum.md => addprimesum.en.md} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename subjects/{addprimesum.md => addprimesum.en.md} (71%) diff --git a/subjects/addprimesum.md b/subjects/addprimesum.en.md similarity index 71% rename from subjects/addprimesum.md rename to subjects/addprimesum.en.md index 344cf856..baa1cf9a 100644 --- a/subjects/addprimesum.md +++ b/subjects/addprimesum.en.md @@ -4,9 +4,9 @@ Write a program that takes a positive integer as argument and displays the sum of all prime numbers inferior or equal to it followed by a newline. -- If the number of arguments is not 1, or the argument is not a positive number, just display 0 followed by a newline. +- If the number of arguments is not 1, or if the argument is not a positive number, the program displays 0 followed by a newline. -Example of output : +Examples of outputs : ```console student@ubuntu:~/piscine/test$ go build @@ -17,4 +17,4 @@ student@ubuntu:~/piscine/test$ ./test 7 student@ubuntu:~/piscine/test$ ./test 57 0 student@ubuntu:~/piscine/test$ -``` \ No newline at end of file +```