Advertisement
joaopaulofcc

Untitled

Jul 22nd, 2020
1,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.25 KB | None | 0 0
  1. main()
  2. {
  3.   // Repetição de 0 a 5
  4.   // INICIO; WHILE (CONDICAO){ INCREMENTO; }
  5.   // Teste condicional no início
  6.  
  7.   int j = 0;      // Início
  8.  
  9.   while(j < 5)    // Condição
  10.   {  
  11.     print(j);
  12.     j++;          // Incremento
  13.   }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement