Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.25 KB | None | 0 0
  1. void main() {
  2.  
  3.   int numeroTestado = 18;
  4.  
  5.   print(geraIndice(numeroTestado));
  6.  
  7. }
  8.  
  9.  
  10. int geraIndice(int numero) {
  11.  
  12.   if(numero % 2 == 0) {
  13.     return 0;
  14.   } else if (numero % 3 == 0) {
  15.     return 1;
  16.   } else {
  17.     return 2;
  18.   }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement