No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test 371B

123456789101112131415161718192021222324252627
  1. int fonction1(int toto){
  2. toto = toto + 1 ;
  3. return toto;
  4. }
  5. int fonction2(){
  6. int i = 0;
  7. while (i <= 2){
  8. print(i);
  9. i = i +1 ;
  10. }
  11. return i;
  12. }
  13. int main(){
  14. const int toto = 1, mimi, lolo = 6;
  15. int tata = 5, lala;
  16. if (tata == 5){
  17. fonction(lolo);
  18. } else if (toto == 1){
  19. fonction2();
  20. }
  21. return 1;
  22. }