Advertisement
ManuMaloka

MINI PROJETO 07

Feb 24th, 2023 (edited)
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Module Module1
  2.     Sub Main()
  3.         Dim I As Integer
  4.         Dim numvogais As Integer
  5.         Dim vogais As String
  6.         Dim str As String
  7.  
  8.         Console.WriteLine("<><><><><><><><><><><><><>")
  9.         Console.WriteLine("")
  10.         Console.WriteLine("_____ MINI PROJETO 07 _____")
  11.         Console.WriteLine("")
  12.         Console.WriteLine("<><><><><><><><><><><><><>")
  13.         Console.WriteLine("")
  14.  
  15.         vogais = “aeiou”
  16.  
  17.         Console.Write(“Digite uma frase: ”)
  18.         str = Console.ReadLine()
  19.         str = Trim(str)
  20.         str = LCase(str)
  21.  
  22.         For I = 1 To Len(str)
  23.             If InStr(vogais, Mid(str, I, 1)) Then
  24.                 numvogais = numvogais + 1
  25.             End If
  26.         Next
  27.  
  28.         Console.WriteLine("")
  29.  
  30.         Console.WriteLine(“O número total de vogais é: ” & numvogais)
  31.  
  32.         'Contar o número de palavras
  33.  
  34.         Console.WriteLine("")
  35.  
  36.         Dim palavras_seperadas As String()
  37.         Dim cada_palavra As String
  38.         Dim numeros As Integer = 0
  39.         Dim abc As String = "abcdefghijklmnopqrstuvwxyz"
  40.         Dim apenas_letras As Boolean
  41.  
  42.         palavras_seperadas = Split(str)
  43.  
  44.  
  45.         For Each cada_palavra In palavras_seperadas
  46.             apenas_letras = False
  47.  
  48.             For I = 1 To Len(cada_palavra)
  49.                 If InStr(abc, Mid(cada_palavra, I, 1)) > 0 Then
  50.                     apenas_letras = True
  51.                 Else
  52.                     apenas_letras = False
  53.                     Exit For
  54.                 End If
  55.             Next
  56.  
  57.             If apenas_letras = True Then
  58.                 numeros = numeros + 1
  59.             End If
  60.  
  61.         Next
  62.         Console.WriteLine("Número total de palavras: " & numeros)
  63.  
  64.         Console.ReadKey()
  65.  
  66.     End Sub
  67.  
  68. End Module
  69.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement