Posts by user255315 • 1 point
1 post
-
-2
votes0
answers15
viewsQ: Replace all repeated numbers with the value 0 and display the number of unique numbers of the vector
import java.util.Scanner; public class Vetor { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("DIGITE O TAMANHO DO VETOR: "); int N =…
javaasked user255315 1