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 > I° Compitino 2008 Lab Prog [Capra]
Pages (3): [1] 2 3 »   Last Thread   Next Thread
Author
Thread    Expand all | Contract all    Post New Thread    Post A Reply
Collapse
b4cco
.consigliere.

User info:
Registered: Nov 2008
Posts: 129 (0.02 al dì)
Location:
Corso: Com Dig
Anno:
Time Online: 1 Day, 20:38:56 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged
I° Compitino 2008 Lab Prog [Capra]

Bonjour a toute colleghi... Il compitino incombe, come state messi?!?!:D
Ma soprattutto... qualcuno sa come imposta il compito quel gran figo del prof capra???

20-11-2008 00:11
Click Here to See the Profile for b4cco Click here to Send b4cco a Private Message Find more posts by b4cco Add b4cco 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

Da quel che ho capito, bisogna definire una classe e poi darà un esercizio in cui bisognerà usare i metodi definiti in quella classe...


Mah, son messo meglio rispetto agli altri compitini :D

20-11-2008 10: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
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

così così dipende da cosa mette..
io ho sentito ke fa usare numeri casuali con Random (classe) o random(metodo Math)- array- tutte cose già viste..

20-11-2008 13:28
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
Giutu
.primate.

User info:
Registered: Oct 2008
Posts: 79 (0.01 al dì)
Location: Varallo Pombia (NO)
Corso: Comunicazione Digitale
Anno: primo
Time Online: 6:53:44 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

array ????

l'abbiamo fatto ???

__________________
Emily89: Hai la faccia da fiera del fumetto!
I miei pargoli: Farshee, Hirugashi, Noren

20-11-2008 21:08
Click Here to See the Profile for Giutu Click here to Send Giutu a Private Message Visit Giutu's homepage! Find more posts by Giutu Add Giutu 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

si, noi l'abbiamo fatto martedì a lezione di lab. Niente di sconvolgente, tranquilla, è facile!

20-11-2008 21:43
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
Giutu
.primate.

User info:
Registered: Oct 2008
Posts: 79 (0.01 al dì)
Location: Varallo Pombia (NO)
Corso: Comunicazione Digitale
Anno: primo
Time Online: 6:53:44 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

io non c'ero ç_ç

me lo guardo sullibro..

__________________
Emily89: Hai la faccia da fiera del fumetto!
I miei pargoli: Farshee, Hirugashi, Noren

21-11-2008 02:03
Click Here to See the Profile for Giutu Click here to Send Giutu a Private Message Visit Giutu's homepage! Find more posts by Giutu Add Giutu to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Emily89
dsy newser

User info:
Registered: Sep 2008
Posts: 317 (0.05 al dì)
Location:
Corso: Comunicazione Digitale
Anno:
Time Online: 2 Days, 10:42:15 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Giulia se vuoi ti passo gli appunti dalla chiavetta XD

21-11-2008 07:56
Click Here to See the Profile for Emily89 Click Here to See the Blog of Emily89 Click here to Send Emily89 a Private Message Find more posts by Emily89 Add Emily89 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

Ho un problema, questo programma deve trovare se una parola è palindroma o no. Ma mi da un errore del cazzo. vi copio il programma (che da javac non ha errori).

import prog.io.*;


public class Array {

public static void main (String [] args){

ConsoleInputManager in=new ConsoleInputManager();

String s=in.readLine("inserisci frase da analizzare: ");
boolean pali=true;
int l=s.length();
int[] array=new int[l];

for ( i=0; i<=l ; i++)
array[i]= [(s.charAt(i))];

for (int u=0; u<=l; u++)
if (array[u]==(array[l-u]))
pali=true;
else{
pali=false;
break;}
if (pali)
System.out.println("la parola e palindroma!");
else
System.out.println("la parola non e palindroma!");

}
}



l'errore una volta mandato in esecuzione e inserita la parola, è il seguente.


inserisci frase da analizzare: anna
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String ind
ex out of range: 4
at java.lang.String.charAt(Unknown Source)
at Array.main(Array.java:16)

21-11-2008 09:39
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
Andrewz
.primate.

User info:
Registered: Sep 2008
Posts: 66 (0.01 al dì)
Location: Milano
Corso: ComDig
Anno: terzo
Time Online: 2 Days, 5:45:05: [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

l'errore è nell'uso di charAt(): gli passi come parametro alla prima esecuzione del ciclo l-u, ovvero la lunghezza della stringa(dato che i=0 (l-u)=l) . Però charAt conta da 0 perciò alla prima esecuzione del ciclo non sa cosa sia charAt(l). ad esempio

s=CIAO
ovvero
CIAO
0123
ad esempio

s.charAt(0)=C;
s.charAt(1)=I;
s.charAt(2)=A;
s.charAt(3)=O;
s.length()=4
s.charAt(4) non sa cosa sia!


se ci sono dubbi chiedi pure!!




edit:{ la soluzione è mettere array[(l-1)-u)] }

Last edited by Andrewz on 21-11-2008 at 10:23

21-11-2008 10:06
Click Here to See the Profile for Andrewz Click here to Send Andrewz a Private Message Find more posts by Andrewz Add Andrewz 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

funziona ora, c'era anche un altro errore in quanto nei for (arrivando da visualbasic) metto sempre <=, mentre l'uguale non ci va mai :D


grazie andrè

21-11-2008 10:25
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
Giutu
.primate.

User info:
Registered: Oct 2008
Posts: 79 (0.01 al dì)
Location: Varallo Pombia (NO)
Corso: Comunicazione Digitale
Anno: primo
Time Online: 6:53:44 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

*_* se me li passi da msn anche emily, non mi posso portare il pc dietro.

io sono seriamente preoccupata ç_ç

__________________
Emily89: Hai la faccia da fiera del fumetto!
I miei pargoli: Farshee, Hirugashi, Noren

22-11-2008 13:16
Click Here to See the Profile for Giutu Click here to Send Giutu a Private Message Visit Giutu's homepage! Find more posts by Giutu Add Giutu 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

Se avete dubbi o errori irrisolti nei codici, postateli qui! Ci si dà una mano finchè si può....

22-11-2008 16:36
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

come vi preparate al compitino?

22-11-2008 17:44
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
b4cco
.consigliere.

User info:
Registered: Nov 2008
Posts: 129 (0.02 al dì)
Location:
Corso: Com Dig
Anno:
Time Online: 1 Day, 20:38:56 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Un po' di meditazione,un faccia a faccia col libro e magari ripasso qualcosa e faccio qualche programmino..
Volevo chiedere se qualcuno sa come funziona l'esamino..
cioè in pratica nel pc entriamo col nostro account, facciamo quello che dobbiamo fare ( si spera) salviamo classi & co. e ni ni iamu ala casa? ( ce ne andiamo a casa?)

22-11-2008 18:00
Click Here to See the Profile for b4cco Click here to Send b4cco a Private Message Find more posts by b4cco Add b4cco 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

io il libro non lo guardo nemmeno, che devi studiare, come fare il for?-.-'

Esercizi, esercizi, esercizi, esercizi, esercizi, esercizi, esercizi, esercizi!

22-11-2008 18:04
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
All times are GMT. The time now is 10:30.    Post New Thread    Post A Reply
Pages (3): [1] 2 3 »   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.040 seconds (88.53% PHP - 11.47% MySQL) con 26 query.