Informática, perguntado por giovanib, 11 meses atrás


Qual exemplo de código abaixo de uma classe filha de Thread que cria aleatoriamente números de 0 a 99, parando apenas ao encontrar o número 50 está correto:

Escolha uma:
a.
Public class ExemploThread extends Thread {

public void start() {

int total = 0;

while ((int)(Math.random()*100) != 50)

total+++;

System.out.println("Sou a " + this.getName() + " e tentei " + total + " vezes.");

}

}

b.
Public class ExemploThread extends Thread {

public void start() {

int total = 0;

while ((int)(Math.random()*100) != 50)

total++;

System.out.println("Sou a " + this.getName() + " e tentei " + total + " vezes.");

}

}

c.
Public class ExemploThread {

public void run() {

int total = 0;

while ((int)(Math.random()*100) != 50)

total++;

System.out.println("Sou a " + this.getName() + " e tentei " + total + " vezes.");

}

}

d.
Public class ExemploThread extends {

public void run() {

int total = 0;

while ((int)(Math.random()*100) != 50)

total++;

System.out.println("Sou a " + this.getName() + " e tentei " + total + " vezes.");

}

}

e.
Public class ExemploThread extends Thread {

public void run() {

int total = 0;

while ((int)(Math.random()*100) != 50)

total++;

System.out.println("Sou a " + this.getName() + " e tentei " + total + " vezes.");

}

}

Soluções para a tarefa

Respondido por LopesH
0

Public class ExemploThread extends Thread {

public void run() {

int total = 0;

while ((int)(Math.random()*100) != 50)

total++;

System.out.println("Sou a " + this.getName() + " e tentei " + total + " vezes.");

}

}

Perguntas interessantes