Advertisement
ceguinho

Untitled

May 10th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. algoritmo "verificar primo no vetor-visualg"
  2.  
  3. var
  4. v:vetor[1..5] de inteiro
  5. c,nump,b: inteiro
  6. inicio
  7. b<-1
  8. para c<- 1 ate 5 faca
  9. escreva("informe o",c,"o. valor")
  10. leia(v[c])
  11.  
  12. fimpara
  13. para c<- 1 ate 5 faca
  14.  
  15. enquanto ( b<=v[c])faca
  16.  
  17. se ( v[c]%b=0)entao
  18.  
  19. nump<-nump+1
  20.  
  21. fimse
  22. escreva(b)
  23. b<-b+1
  24. fimenquanto
  25.  
  26. fimpara
  27.  
  28.  
  29. fimalgoritmo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement