This commit is contained in:
Orange_Dugongo 2016-10-11 18:06:37 +02:00
parent 4a21402d5f
commit 2452bb6d19
6 changed files with 45 additions and 0 deletions

BIN
src/DivisioneStringa.class Normal file

Binary file not shown.

View File

@ -0,0 +1,9 @@
import java.util.StringTokenizer;
public class DivisioneStringa{
public static void main(String [] args){
StringTokenizer st = new StringTokenizer("this is a test");
while (st.hasMoreTokens())
System.out.println(st.nextToken());
}
}

Binary file not shown.

View File

@ -0,0 +1,14 @@
/*
Scrivere un programma che visualizzi in sequenza due panel per chiedere il
nome di una persona e darle il benvenuto
*/
import javax.swing.JOptionPane;
public class Esercizio1{
public static void main(String [] args){
String name = JOptionPane.showInputDialog("Come ti chiami?");
JOptionPane.showMessageDialog(null, "Salve "+name);
System.exit(0);
}
}

BIN
src/Random1.class Normal file

Binary file not shown.

22
src/Random1.java Normal file
View File

@ -0,0 +1,22 @@
/*
Dopo aver analizzato la classe Random, scrivere un programma che simuli
il lancio di una moneta. Scrivere poi un programma per simulare il lancio
di un dado
*/
import java.util.Random;
public class Random1{
public static void main(String [] args){
Random rand = new Random();
int n;
boolean b;
if(b=rand.nextBoolean())
System.out.println("Testa");
else
System.out.println("Croce");
n=rand.nextInt(6)+1;
System.out.println("dado: "+n);
}
}