Size: a a a

2020 December 11

i

ilya in learn.java
он же ну амазон рекомендует вот такую
источник

i

ilya in learn.java
источник

MG

Maxim Grankin in learn.java
ilya
он же ну амазон рекомендует вот такую
Такая же есть по 11й жаве
источник

i

ilya in learn.java
Maxim Grankin
Такая же есть по 11й жаве
наверное я не искал целенаправленно
источник

MG

Maxim Grankin in learn.java
Просто если сдавать сертификацию, то определеннл лучше брать по 11й
источник

MG

Maxim Grankin in learn.java
Старые экзамен сдавать ну такое
источник

I

Iss in learn.java
спасибо сейчас посмотрю
источник

1

180 in learn.java
можете помочь с задачкой, люди?
источник

S

Skelorc in learn.java
180
можете помочь с задачкой, люди?
что за задачка?
источник

1

180 in learn.java
Iteration: Again and Again and Again ...
Write a program containing eight while loops to generate the following sequences of integer values:
(a) 0 to 9 inclusive

(b) 99 to 50 inclusive

(c) Even numbers between 50 and 100 inclusive

(d) First 20 numbers in the arithmetic sequence 0, 8, 16, 24, . . .

(e) First 10 numbers in the sequence 1, 2, 4, 8, …

(f) First 10 numbers in the sequence 1, 2, 0, 3, -1, 4, -2, …

(g) First 10 triangle numbers

See https://www.mathsisfun.com/algebra/triangular-numbers.html
(h) First 12 numbers in the sequence 1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12, 16 … (Appendix 2) • Use a single while loop for each sequence.
• Do not create a large numbers of variables (you will be penalised).
• Keep the code as simple as possible.


The solutions must be stored in a single source file called WhileTester.javaWhileTester.java. Your program must contain screen messages indicating what each loop is trying to do. Your output must therefore closely resemble the sample output below (notice the use of commas to separate sequence elements). Also do check for each solution that you generate the correct number of elements.
WhileTester running ...
Loop to print values 0 to 9 inclusive 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Loop to print values 99 to 50 inclusive 99, 98, 97, ... 53, 52, 51
...
The following points should be borne in mind:
The only file you should submit via Blackboard is WhileTester.javaWhileTester.java
источник

DC

Denis Chikanov in learn.java
180
Iteration: Again and Again and Again ...
Write a program containing eight while loops to generate the following sequences of integer values:
(a) 0 to 9 inclusive

(b) 99 to 50 inclusive

(c) Even numbers between 50 and 100 inclusive

(d) First 20 numbers in the arithmetic sequence 0, 8, 16, 24, . . .

(e) First 10 numbers in the sequence 1, 2, 4, 8, …

(f) First 10 numbers in the sequence 1, 2, 0, 3, -1, 4, -2, …

(g) First 10 triangle numbers

See https://www.mathsisfun.com/algebra/triangular-numbers.html
(h) First 12 numbers in the sequence 1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12, 16 … (Appendix 2) • Use a single while loop for each sequence.
• Do not create a large numbers of variables (you will be penalised).
• Keep the code as simple as possible.


The solutions must be stored in a single source file called WhileTester.javaWhileTester.java. Your program must contain screen messages indicating what each loop is trying to do. Your output must therefore closely resemble the sample output below (notice the use of commas to separate sequence elements). Also do check for each solution that you generate the correct number of elements.
WhileTester running ...
Loop to print values 0 to 9 inclusive 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Loop to print values 99 to 50 inclusive 99, 98, 97, ... 53, 52, 51
...
The following points should be borne in mind:
The only file you should submit via Blackboard is WhileTester.javaWhileTester.java
Хорошо, задачка есть. А проблема в чём? Целиком здесь за тебя её не решат
источник

1

180 in learn.java
я не понимаю как интегрировать сюда все параметры a b c ...
источник

GV

Gukov Viktor in learn.java
180
Iteration: Again and Again and Again ...
Write a program containing eight while loops to generate the following sequences of integer values:
(a) 0 to 9 inclusive

(b) 99 to 50 inclusive

(c) Even numbers between 50 and 100 inclusive

(d) First 20 numbers in the arithmetic sequence 0, 8, 16, 24, . . .

(e) First 10 numbers in the sequence 1, 2, 4, 8, …

(f) First 10 numbers in the sequence 1, 2, 0, 3, -1, 4, -2, …

(g) First 10 triangle numbers

See https://www.mathsisfun.com/algebra/triangular-numbers.html
(h) First 12 numbers in the sequence 1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12, 16 … (Appendix 2) • Use a single while loop for each sequence.
• Do not create a large numbers of variables (you will be penalised).
• Keep the code as simple as possible.


The solutions must be stored in a single source file called WhileTester.javaWhileTester.java. Your program must contain screen messages indicating what each loop is trying to do. Your output must therefore closely resemble the sample output below (notice the use of commas to separate sequence elements). Also do check for each solution that you generate the correct number of elements.
WhileTester running ...
Loop to print values 0 to 9 inclusive 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Loop to print values 99 to 50 inclusive 99, 98, 97, ... 53, 52, 51
...
The following points should be borne in mind:
The only file you should submit via Blackboard is WhileTester.javaWhileTester.java
Всегда нравились задачи типа: "Мы отрубаем вам ноги. Теперь танцуйте твист и вальс. Пользоваться протезами запрещено"
источник

1

180 in learn.java
Gukov Viktor
Всегда нравились задачи типа: "Мы отрубаем вам ноги. Теперь танцуйте твист и вальс. Пользоваться протезами запрещено"
😂😂
источник

1

180 in learn.java
int i=0;
       while(i<=9){
           System.out.println(i);
           i++;
       }
источник

1

180 in learn.java
это а
источник

DC

Denis Chikanov in learn.java
180
я не понимаю как интегрировать сюда все параметры a b c ...
Какие параметры? В каком смысле интегрировать? Что ты понимаешь, как сделать?
источник

1

180 in learn.java
как связать другие и описать процесс
источник

1

180 in learn.java
то что он делает
источник

1

180 in learn.java
180
int i=0;
       while(i<=9){
           System.out.println(i);
           i++;
       }
вот это 1
источник