Advertisement
joaopaulofcc

Untitled

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