Posts by Francine Stivanin • 125 points
2 posts
-
9
votes1
answer1019
viewsQ: Encrypt a phrase/word by reversing and switching vowels with the following vowels
I was given an exercise in which I have to write a program that reads a word in the interval [1-20] and encrypt this word using the steps: reverse the word where there is a vowel, replace with the…
-
3
votes1
answer198
viewsQ: Do not repeat letters (char) in an ASCII matrix
You had to create a 5x5 array by printing random characters from the ASCII table. public class ExercicioClass01g { static Scanner ler = new Scanner(System.in); public static char mat[][] = new…