Dsy Network www | forum | my | didattica | howto | wiki | el goog | stats | blog | dona | rappresentanti
Homepage
 Register   Calendar   Members  Faq   Search  Logout 
.dsy:it. : Powered by vBulletin version 2.3.1 .dsy:it. > Didattica > Corsi A - F > Fondamenti di architettura e programmazione > IMPORTANTE APPELLO ALBERTI!!!!!! Chiediamo aiuto!
Pages (2): [1] 2 »   Last Thread   Next Thread
Author
Thread    Expand all | Contract all    Post New Thread    Post A Reply
Collapse
Iosonomarty
.simpatizzante.

User info:
Registered: Mar 2009
Posts: 12 (0.00 al dì)
Location: milano
Corso: Comunicazione Digitale
Anno: ?
Time Online: 3:30:55 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged
Exclamation IMPORTANTE APPELLO ALBERTI!!!!!! Chiediamo aiuto!

Ciao ragazzi..mi servirebbe un' informazione..
se una persona che ha avuto accesso all'orale(Capra/Alberti) e non lo passa, deve rifare solo l'orale al prossimo appello (giugno)?

Inoltre non so se avete visto che la prof ha postato le soluzioni del compito...
Abbiamo provato a compilare l'esercizio 4 ma ci da errore di compilazione e se lo correggiamo, il risultato non corrisponde a quello segnato dalla prof (ovvero la risposta b)...
Potreste provare a compilarlo e verificare se vi risulta corretto??


4 (3 punti)
Considerate i due frammenti di codice seguenti (assumete x una variabile di tipo int):

while ( x>0 ) { x-- } // frammento 1
System.out.println(“x = “ + x);

do ( x-- ) while ( x>0 ); // frammento 2
System.out.println(“x = “ + x);
In quale tra le seguenti circostanze l’output dei due frammenti è diverso?
I. x è 0 prima che il segmento sia eseguito
II. x è maggiore di 0 prima che il segmento sia eseguito
III. x è minore di 0 prima che il segmento sia eseguito
Risposta:
a. solo I b. solo II c. solo III d. I e II e. I e III


Così se è sbagliato lo segnaliamo al più presto alla prof, in modo che si possa comprendere se l'errore è nostro o è una svista sua....
Ciao e grazie!
:D

13-03-2009 21:20
Click Here to See the Profile for Iosonomarty Click here to Send Iosonomarty a Private Message Find more posts by Iosonomarty Add Iosonomarty to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
ViPah
.arcimaestro.

User info:
Registered: Nov 2008
Posts: 404 (0.07 al dì)
Location: xD
Corso: =]
Anno:
Time Online: 1 Day, 23:12:28 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

minchia fap alla mattina cosi presto mi toglie la voglia di vivere :D

14-03-2009 08:01
Click Here to See the Profile for ViPah Click here to Send ViPah a Private Message Visit ViPah's homepage! Find more posts by ViPah Add ViPah to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
ViPah
.arcimaestro.

User info:
Registered: Nov 2008
Posts: 404 (0.07 al dì)
Location: xD
Corso: =]
Anno:
Time Online: 1 Day, 23:12:28 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

ah non l'ho passato :crazy:


il codice potrebbe essere questo?



public static void main (String []args){

ConsoleInputManager in=new ConsoleInputManager();
int x=in.readInt("inserisci valore: ");

while ( x>0 )
x--;
System.out.println("x = " + x);

do {
x-- ;
} while ( x>0 );
System.out.println("x = " + x);
}


se lo compilo non da errori, dando valori a caso sopra e sotto lo zero la risposta della prof è sbagliata.


l'output mi risulta sempre diverso.


Con un valore positivo, e un valore uguale a zero, mi da in output
x=0
x=-1

Con un valore negativo i risultati variano ma sono sempre differenti l'uno dall'altro.

Quindi nessuna risposta è giusta?:D



rofl:saw:



se cosi fosse si alzerebbero di circa 3 punti tutte le prove.



esultate discepoli





:banana:

Last edited by ViPah on 14-03-2009 at 09:04

14-03-2009 08:03
Click Here to See the Profile for ViPah Click here to Send ViPah a Private Message Visit ViPah's homepage! Find more posts by ViPah Add ViPah to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Iosonomarty
.simpatizzante.

User info:
Registered: Mar 2009
Posts: 12 (0.00 al dì)
Location: milano
Corso: Comunicazione Digitale
Anno: ?
Time Online: 3:30:55 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Esatto, il codice l'ho scritto uguale e infatti ti viene proprio quello che viene anche a me....
E' importante ke la prof se ne accorga, ieri sera le abbiamo mandato una mail...
Più che altro bisogna capire se la correzione è sbagliata solo nella traccia ke ha messo in internet o se quella traccia l'ha usata come guida x correggere i compiti...
Se è la seconda possibilità questo esercizio potrebbe anke alzare il voto a qualcuno ke magari verrebbe anche ammesso all'orale...
:-D

14-03-2009 09:01
Click Here to See the Profile for Iosonomarty Click here to Send Iosonomarty a Private Message Find more posts by Iosonomarty Add Iosonomarty to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Iosonomarty
.simpatizzante.

User info:
Registered: Mar 2009
Posts: 12 (0.00 al dì)
Location: milano
Corso: Comunicazione Digitale
Anno: ?
Time Online: 3:30:55 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

IO HO PROVATO CON IL CODICE COSì:

while ( x>0 )
x--;
System.out.println("x = " + x);

do {
x-- ;
} while ( x>0 );
System.out.println("x = " + x);
}

E L' OUTPUT SARA' SEMPRE DIVERSO...

MENTRE SE ESEGUO I DUE CICLI CON VARIABILI DIFFERENTI MA DI UGUALI VALORE (in modo che all'uscita dal primo ciclo il valore della x nn cambi!) CON QUESTO CODICE:

x= in.readInt( );
f= in.readInt( );

while ( x>0 )
x--;
System.out.println("x = " + x);

do {
f-- ;
} while ( f>0 );
System.out.println("f = " + f);
}

mi verranno diversi il caso in cui metto la x e la f=0 e se metto x<0 e f <0

in questo caso una soluzione c'è, ovvero la E, ma cmq nn corrisponde a quello ke ha segnato lei...:?

14-03-2009 09:06
Click Here to See the Profile for Iosonomarty Click here to Send Iosonomarty a Private Message Find more posts by Iosonomarty Add Iosonomarty to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
ViPah
.arcimaestro.

User info:
Registered: Nov 2008
Posts: 404 (0.07 al dì)
Location: xD
Corso: =]
Anno:
Time Online: 1 Day, 23:12:28 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

in qualunque caso, è sbagliato.

nessuna delle risposte che potevamo dare era giusta!


La risposta giusta sarebbe:


La I la II e la III.

Che tristezza.


Ps, tenendo conto che ho fatto la E nella prova, mi va bene in entrambi i casi :D

Last edited by ViPah on 14-03-2009 at 09:12

14-03-2009 09:09
Click Here to See the Profile for ViPah Click here to Send ViPah a Private Message Visit ViPah's homepage! Find more posts by ViPah Add ViPah to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
ViPah
.arcimaestro.

User info:
Registered: Nov 2008
Posts: 404 (0.07 al dì)
Location: xD
Corso: =]
Anno:
Time Online: 1 Day, 23:12:28 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Essendo espresso in 29, l'unica modifica che può fare è questa, portare i voti in trentesimi considerando quella domanda nulla.

Quindi uno che ha preso 18 su 29, considerandolo ora in ventiseiesimi.

18*30/26=20,76


e cosi via.

Se fosse onesta farebbe questo passaggio, altrimenti la denuncio.:saw::saw::saw::saw::saw::saw:

14-03-2009 11:12
Click Here to See the Profile for ViPah Click here to Send ViPah a Private Message Visit ViPah's homepage! Find more posts by ViPah Add ViPah to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
ViPah
.arcimaestro.

User info:
Registered: Nov 2008
Posts: 404 (0.07 al dì)
Location: xD
Corso: =]
Anno:
Time Online: 1 Day, 23:12:28 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Qualche fot***a news?

17-03-2009 07:56
Click Here to See the Profile for ViPah Click here to Send ViPah a Private Message Visit ViPah's homepage! Find more posts by ViPah Add ViPah to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
lik2006
.illuminato.

User info:
Registered: Oct 2008
Posts: 175 (0.03 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 10:25:53 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

novità?

18-03-2009 09:49
Click Here to See the Profile for lik2006 Click here to Send lik2006 a Private Message Find more posts by lik2006 Add lik2006 to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
ViPah
.arcimaestro.

User info:
Registered: Nov 2008
Posts: 404 (0.07 al dì)
Location: xD
Corso: =]
Anno:
Time Online: 1 Day, 23:12:28 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

-.-

18-03-2009 16:24
Click Here to See the Profile for ViPah Click here to Send ViPah a Private Message Visit ViPah's homepage! Find more posts by ViPah Add ViPah to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Iosonomarty
.simpatizzante.

User info:
Registered: Mar 2009
Posts: 12 (0.00 al dì)
Location: milano
Corso: Comunicazione Digitale
Anno: ?
Time Online: 3:30:55 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

No nessun segno di vita...
:shock:

18-03-2009 19:35
Click Here to See the Profile for Iosonomarty Click here to Send Iosonomarty a Private Message Find more posts by Iosonomarty Add Iosonomarty to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
ViPah
.arcimaestro.

User info:
Registered: Nov 2008
Posts: 404 (0.07 al dì)
Location: xD
Corso: =]
Anno:
Time Online: 1 Day, 23:12:28 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

domani qualcuno ha l'orale?

18-03-2009 21:30
Click Here to See the Profile for ViPah Click here to Send ViPah a Private Message Visit ViPah's homepage! Find more posts by ViPah Add ViPah to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Wyam
.simpatizzante.

User info:
Registered: Mar 2009
Posts: 16 (0.00 al dì)
Location: Galleria delle ombre
Corso: Dispositivi bellici e teorie eversive
Anno: 1789
Time Online: 5:34:32 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

io -.-

__________________
Wau Holland Vive!

18-03-2009 21:45
Click Here to See the Profile for Wyam Click here to Send Wyam a Private Message Find more posts by Wyam Add Wyam to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
ViPah
.arcimaestro.

User info:
Registered: Nov 2008
Posts: 404 (0.07 al dì)
Location: xD
Corso: =]
Anno:
Time Online: 1 Day, 23:12:28 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

lol! auguri!

19-03-2009 07:33
Click Here to See the Profile for ViPah Click here to Send ViPah a Private Message Visit ViPah's homepage! Find more posts by ViPah Add ViPah to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
lik2006
.illuminato.

User info:
Registered: Oct 2008
Posts: 175 (0.03 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 10:25:53 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

scrivete le domande fatte?

19-03-2009 13:04
Click Here to See the Profile for lik2006 Click here to Send lik2006 a Private Message Find more posts by lik2006 Add lik2006 to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
All times are GMT. The time now is 15:19.    Post New Thread    Post A Reply
Pages (2): [1] 2 »   Last Thread   Next Thread
Show Printable Version | Email this Page | Subscribe to this Thread | Add to Bookmarks

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is ON
 

Powered by: vBulletin v2.3.1 - Copyright ©2000 - 2002, Jelsoft Enterprises Limited
Mantained by dsy crew (email) | Collabora con noi | Segnalaci un bug | Archive | Regolamento | Licenze | Thanks | Syndacate
Pagina generata in 0.198 seconds (88.66% PHP - 11.34% MySQL) con 28 query.