From 4a6e3184cc13ba9018aa4d4781e42a0c28cdee7a Mon Sep 17 00:00:00 2001 From: Pinarzaimoglu Date: Tue, 22 Oct 2019 11:30:01 +0300 Subject: [PATCH 1/2] Solution Project Euler 5 --- C/05.SmallestMultiple/.problem5.c.swp | Bin 0 -> 12288 bytes C/05.SmallestMultiple/problem5.c | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 C/05.SmallestMultiple/.problem5.c.swp create mode 100644 C/05.SmallestMultiple/problem5.c diff --git a/C/05.SmallestMultiple/.problem5.c.swp b/C/05.SmallestMultiple/.problem5.c.swp new file mode 100644 index 0000000000000000000000000000000000000000..0f802c1fbd1769de6fa743651bf1a69834c81ae4 GIT binary patch literal 12288 zcmeI1Jx|+E6owC7nA#$k%5<9$ln99JP`99v4iu0&AXP#jhAttwh}$}j<&EF)x=pQC MI#JWK%Lgyz2EVg-!T + +int main(){ + while(1){ + if( i%11==0 && %12==0 && i%13==0 && i%14==0 && i%15==0 && i%16==0 && i%17==0 && i%18==0 && i%19==0 && i%20==0){ + printf("\n%d\n", i); + return 0; + } + i++; + } + return 0; +} + From 93d7ee7ffedfc1ceecf52904c8c4edd8f50901ad Mon Sep 17 00:00:00 2001 From: Pinarzaimoglu Date: Thu, 31 Oct 2019 14:57:35 +0300 Subject: [PATCH 2/2] README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5f2edf..a5ca2f8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Project Euler is a series of challenging problems that require mathematical and programming skills. Somebody who enjoys learning new area of mathematics, project Euler is going to be a fun journey. ## How to contribute? -- Fork this repository. +- Fork this repository . - Make a directory with the format `problem_number.problem_statement` in the directory of the language you're solving. ``` For example if you are solving Problem no 1 in java- >