Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Projet_Q4_Groupe_O4
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Louis Malevez
Projet_Q4_Groupe_O4
Commits
1d77510a
Commit
1d77510a
authored
Mar 24, 2020
by
Arnaud Lefebvre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add LICENSE
parent
06c1b4b3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
Programme test
Programme test
+25
-0
No files found.
Programme test
0 → 100644
View file @
1d77510a
#include<stdio.h>
#include<stdlib.h>
void main(int argc, char *argv[]) {
bool is_div(number, i) {
return number % i == 0;
}
bool is_prime(number) {
for (int i = 2; i < number; i++) {
if (is_div(number, i) == True) return False;
return True;
}
}
int[] prime_divs(number) {
int[] prime_dividers;
for (int i = 2; i < number; i++) {
if (is_prime(i) == True && is_div(number, i) == True) {
break;
}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment