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 N - Z > Programmazione > [Capra] Primo progettino
  Last Thread   Next Thread
Author
Thread    Expand all | Contract all    Post New Thread    Post A Reply
Collapse
johnnyd
.grande:maestro.

User info:
Registered: Sep 2005
Posts: 840 (0.12 al dì)
Location: Milano (Fragagnano)
Corso: Informatica
Anno: IV
Time Online: 13 Days, 22:13:29 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged
[Capra] Primo progettino

Ciao ragazzi, com'è andato il compitino di Laboratorio oggi?...
io ho provato ad eseguire quello che ho combinato io e sembra che vada bene.. vi posto il codice... del primo esercizio.. quello sull'ammortamento:

code:
import prog.io.*; import prog.utili.*; public class Ammortamento { public static void main(String [] arg) { ConsoleInputManager in = new ConsoleInputManager(); ConsoleOutputManager out = new ConsoleOutputManager(); Data dataCorrente = new Data(); int gg, mm, aa, rate; double prestito, importo, Srata, interesse; gg = in.readInt("Inserisci un giorno: "); mm = in.readInt("Inserisci un mese: "); aa = in.readInt("Inserisci un anno: "); Data dataFine = new Data(gg, mm, aa); prestito = in.readDouble("Inserisci l'importo del prestito: "); if (dataFine.isMaggiore(dataCorrente) == true && prestito > 2000 && prestito < 20000) { //Calcolo le rate int giorni = dataCorrente.quantoManca(dataFine); if ((giorni % 60) == 0) { //Non c'è bisogno di apprssimare il numero di rate rate = giorni / 60; } else { //C'è bisogno di approssimare il numero di rate rate = giorni / 60 + 1; } if (rate >= 60) { interesse = (prestito * 12.5) / 100; importo = prestito + interesse; Srata = importo / rate; out.println("Numero rate bimestrali: " + rate); out.println("Importo di ogni singola rata: " + Srata); } else if (rate >= 40 && rate <60) { interesse = (prestito * 10) / 100; importo = prestito + interesse; Srata = importo / rate; out.println("Numero rate bimestrali: " + rate); out.println("Importo di ogni singola rata: " + Srata); } else if (rate < 40) { interesse = (prestito * 8) / 100; importo = prestito + interesse; Srata = importo / rate; out.println("Numero rate bimestrali: " + rate); out.println("Importo di ogni singola rata: " + Srata); } } else { out.println("Attenzione controlla di aver inserito una data, ed un prestito giusto!!"); } } }

__________________
My Blog - My Photo Album

14-11-2005 13:01
Click Here to See the Profile for johnnyd Click Here to See the Blog of johnnyd Click here to Send johnnyd a Private Message Find more posts by johnnyd Add johnnyd to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
All times are GMT. The time now is 20:15.    Post New Thread    Post A Reply
  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.027 seconds (74.02% PHP - 25.98% MySQL) con 26 query.