-
Notifications
You must be signed in to change notification settings - Fork 0
Коммит ДЗ #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
src/ru/skypro/Main.java
Outdated
| public static void main(String[] args) { | ||
|
|
||
| // Задание 1 | ||
| int[] i = new int[3]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i - очень плохое имя для массива, i,j,k,m,n,l - используются для циклов - легко можно запутаться
Надо поправить
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Переименновать все переменные в intArray, doubleArray, charArray или для ДЗ так оставить?
src/ru/skypro/Main.java
Outdated
| // Задание 4 | ||
| for (int j = 0; j < i.length; j++) { | ||
| if (i[j]%2==1) | ||
| i[j]+=1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
не забываем про форматирование Ctrl+Alt+L
src/ru/skypro/Main.java
Outdated
|
|
||
| // Задание 2 | ||
| for (int j = 0; j < i.length; j++) { | ||
| if (j == i.length - 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
используй {} в циклах, даже если это не обязательно, гугл рекомендует придерживаться
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
В циклах или в If -ах?
1.5 Массивы