Skip to content
Snippets Groups Projects
Commit 105b3de1 authored by william.ho's avatar william.ho
Browse files

ex4 pas le temps

parent 62114c86
No related branches found
No related tags found
No related merge requests found
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
int multiple(int val, int step){
if(step > 12){
return val;
}else{
int tmp = multiple(val, step+1);
}
}
int main(){ int main(){
int val;
printf("Entier : ");
scanf("%d", &val);
printf("Table :\n");
return(0); return(0);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment