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
lepl1503-2020-groupe-O4
Projet_Q4_Groupe_O4
Commits
11055c44
Commit
11055c44
authored
Mar 30, 2020
by
Arnaud Lefebvre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete Programme test
parent
8db5363d
Pipeline
#3321
passed with stage
in 0 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
25 deletions
+0
-25
Programme test
Programme test
+0
-25
No files found.
Programme test
deleted
100644 → 0
View file @
8db5363d
#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