+ 2
Вопрос по массиву
Как сделать, чтобы при выборе разных переменных массива к переменным x и y присваивались определённые значения. Например если m1 то x=100 y=70, m2 то x=109 y=77 Спасибо заранее https://code.sololearn.com/cFzE8aGn8AAQ/?ref=app
2 Respostas
+ 2
You mean like this ?
https://code.sololearn.com/crYiD4lY9JOs
These are called parrallel array's. Where you make you sure that the same indexes contain the value that belong together.
This is the simplest way to do it, but is is vulnerable to bugs.
If you really want to do this. Learn to make a class, objects and collections.
+ 2
Большое спасибо.