Advertisement
ManuMaloka

String_2

Feb 1st, 2023
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Module Module1
  2.     Dim s1, s2, c1, sf As String
  3.     Dim n1, n2, e As Integer
  4.     Sub Main()
  5.        
  6.         'Leitura das duas strings
  7.        Console.Write("Digite a 1a String(Código encriptado): ")
  8.         s1 = Console.ReadLine()
  9.         Console.Write("Digite a 2a String(Chave para desencriptar): ")
  10.         s2 = Console.ReadLine()
  11.          'Inicialização da string final. String vazia.
  12.        sf = ""
  13.        
  14.         'Encontra o tamanho das strings
  15.      
  16.         n1 = Len(s1)
  17.         n2 = Len(s2)
  18.         'Ciclo que retira caracter a caracter da 1ª string e verifica se este existe na segunda.
  19.        For i = 1 To n1
  20.             c1 = Mid(s1, i, 1)
  21.             e = InStr(s2, c1)
  22.             If e = 0 Then
  23.                 sf = sf + c1
  24.             End If
  25.         Next
  26.  
  27.         'Saida de resultados
  28.        Console.WriteLine("A mensagem é: " & sf)
  29.         Console.ReadLine()
  30.  
  31.     End Sub
  32.  
  33. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement