Java Befehl? < Java < Programmiersprachen < Praxis < Informatik < Vorhilfe
|
Status: |
(Frage) beantwortet | Datum: | 18:27 Mo 22.04.2013 | Autor: | haner |
Aufgabe | We need a loop counting variable called count. Write the instruction to declare and initialise this variable with the value 0 (zero). |
Wie muss dieser Befehl lauten?
Bin totaler Anfänger.
haner
|
|
|
|
Hallo!
Das hängt ganz davon ab, wie weit diese Schleife denn zählen soll. Meist reicht ein INT, das geht bis 2,1 Mrd. Andernfalls kann man auch ein LONG nehmen, damit kann man bis ca. [mm] $9*10^{18}$ [/mm] zählen. mit dem INT geht das so:
int count=0;
|
|
|
|