Esercizi
This commit is contained in:
parent
4a21402d5f
commit
2452bb6d19
BIN
src/DivisioneStringa.class
Normal file
BIN
src/DivisioneStringa.class
Normal file
Binary file not shown.
9
src/DivisioneStringa.java
Normal file
9
src/DivisioneStringa.java
Normal 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());
|
||||
}
|
||||
}
|
BIN
src/JoptionPane/Esercizio1.class
Normal file
BIN
src/JoptionPane/Esercizio1.class
Normal file
Binary file not shown.
14
src/JoptionPane/Esercizio1.java
Normal file
14
src/JoptionPane/Esercizio1.java
Normal 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
BIN
src/Random1.class
Normal file
Binary file not shown.
22
src/Random1.java
Normal file
22
src/Random1.java
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user