И аз започвам от началото. Най-вече как се създава масив, тип на данните в него, въвеждане на променливите, определяне на големината и в последствие достъпване на променливите при някакви условия. Вече тези условия: или някаква “for-for” конструкция; “while”…там вече почва да превърта системата.
тук може да видиш няколко варианта и да избереш този, който ти се вижда най-удачен/лесен. Също така в този сайт може да намериш отговор на доста други подобни въпроси.
Hi Tedi,
Great job on the task. I feel like I could never have done it your way at least at this level of knowledge.
Below am sharing my solution. I used only the information we have been given so far in the prep course. I hope it will be helpful for you or others looking in the forum as another point of view on the task.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] list = sc.nextLine().split(", ");
int[] result = new int[list.length];
for ( int n = 0; n < result.length; n++ ) {
result[n] = Integer.parseInt(list[n]);
}
int position = 0;
for (int n = 0; n < result.length; n++) {
for (int i = n + 1; i < result.length; i++) {
if (result[n] < result[i]) {
position = result[n];
result[n] = result[i];
result[i] = position;
}
}
}
for (int n = 0; n<result.length-1; n++) {
System.out.print(result[n] + ", ");
}
System.out.println(result[result.length-1]);