Exercices Paper
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Laboratoire Paper
Répéter des instructions
Afin de pouvoir réaliser la même opération un grand nombre de fois sans avoir à multiplier inutilement les lignes de code, nous avons à notre disposition des opérations de répétitions. Elle se présente comme suit :
repeat(N) { // les instructions seront répétées N fois
// les instructions à répéter
} loop;
Exemple
Sample Repeat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <stdlib.h>
#include "paper.h"
int main()
{
init_paper(10,10,25);
move_right();
repeat(5) {
colorize();
move_down();
move_down();
} loop;
display_paper();
return 0;
}
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content