Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
| X-Received | by 2002:ac8:1c43:: with SMTP id j3mr1029441qtk.302.1599611763999; Tue, 08 Sep 2020 17:36:03 -0700 (PDT) |
|---|---|
| X-Received | by 2002:a05:620a:2404:: with SMTP id d4mr1038859qkn.284.1599611763827; Tue, 08 Sep 2020 17:36:03 -0700 (PDT) |
| Path | csiph.com!xmission!news.snarked.org!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail |
| Newsgroups | it.comp.java |
| Date | Tue, 8 Sep 2020 17:36:03 -0700 (PDT) |
| Complaints-To | groups-abuse@google.com |
| Injection-Info | google-groups.googlegroups.com; posting-host=93.36.165.82; posting-account=wayJLwoAAAASMHnYit4Irsdi9kmsqLJa |
| NNTP-Posting-Host | 93.36.165.82 |
| User-Agent | G2/1.0 |
| MIME-Version | 1.0 |
| Message-ID | <1cf45f7a-aa66-4ae3-bcc1-e60a2e50ee69n@googlegroups.com> (permalink) |
| Subject | codice instabile |
| From | pino mugo <tripponelafricano@gmail.com> |
| Injection-Date | Wed, 09 Sep 2020 00:36:03 +0000 |
| Content-Type | text/plain; charset="UTF-8" |
| Content-Transfer-Encoding | quoted-printable |
| Lines | 23 |
| Xref | csiph.com it.comp.java:9364 |
Show key headers only | View raw
Questa successione numerica definita per ricorrenza deve dare ovviamente sempre lo stesso valore per ogni termine ( cioè sempre 1/77) , invece da tutti valori diversi!
public class successione {
public static void main(String[] args) {
int n = 10;
double s = 1.0/77.0;
System.out.print("First " + n + " terms: ");
for (int i = 1; i <= n; ++i)
{
System.out.print(s + " x ");
double r = 78.0 * s - 1;
s = r;
}
}
}
ciao
Back to it.comp.java | Previous | Next — Next in thread | Find similar
codice instabile pino mugo <tripponelafricano@gmail.com> - 2020-09-08 17:36 -0700 Re: codice instabile Giorgio Pastore <pastgio@units.it> - 2020-09-19 11:25 +0200 Re: codice instabile rootkit <rootkit@email.it> - 2020-09-20 05:20 -0700
csiph-web