Fix and delate nextLine()
This commit is contained in:
parent
3f0a55026c
commit
a8e5494aa0
Binary file not shown.
@ -30,8 +30,8 @@ public class Esame{
|
||||
String nome;
|
||||
int voto;
|
||||
int mat;
|
||||
if(sc.hasNextLine()){
|
||||
nome=sc.nextLine();
|
||||
if(sc.hasNext()){
|
||||
nome=sc.next();
|
||||
if(sc.hasNextInt()){
|
||||
voto=sc.nextInt();
|
||||
if(sc.hasNextInt()){
|
||||
|
Binary file not shown.
@ -24,9 +24,7 @@ public class Main{
|
||||
sc=new Scanner(srcEsami);
|
||||
e=Esame.read(sc);
|
||||
while(e!=null){
|
||||
System.out.println(e.getVoto()+" "+e.getMat()+" "+e.getNome());
|
||||
if(e.lookUp(s.getMat())){
|
||||
System.out.println("ok "+e.getVoto());
|
||||
media+=e.getVoto();
|
||||
i++;
|
||||
}
|
||||
@ -37,6 +35,9 @@ public class Main{
|
||||
s=Studente.read(sc);
|
||||
}
|
||||
|
||||
System.out.println("lo studente "+s.getNomeCognome()+" ha la media di: "+media/i);
|
||||
if(s!=null)
|
||||
System.out.println("lo studente "+s.getNomeCognome()+" ha la media di: "+media/i);
|
||||
else
|
||||
System.out.println("Impossibile trovare delle corrispondenze.");
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
@ -26,10 +26,10 @@ public class Studente{
|
||||
String nome;
|
||||
String cnome;
|
||||
int mat;
|
||||
if(sc.hasNextLine()){
|
||||
nome=sc.nextLine();
|
||||
if(sc.hasNextLine()){
|
||||
cnome=sc.nextLine();
|
||||
if(sc.hasNext()){
|
||||
nome=sc.next();
|
||||
if(sc.hasNext()){
|
||||
cnome=sc.next();
|
||||
if(sc.hasNextInt()){
|
||||
mat=sc.nextInt();
|
||||
return new Studente(nome, cnome, mat);
|
||||
|
Loading…
Reference in New Issue
Block a user