- 3
can you help solve the problem?
The height of each of the 22 students in the class is represented as an array. Determine the number of students whose height does not exceed the value of r
16 odpowiedzi
+ 4
No, we don't do your homework for free.
+ 3
Райхона Воситова В чем именно проблема?
Задача предельно ясная: В классе 22 ученика, есть массив с данными роста каждого ученика. Нужно из этого массива вычислить количество учеников, рост которых не превышает число r.
Не стесняйтесь своего кода, покажите свою попытку и мы дальше будем подсказывать. Тут уже успели показать с чего начать писать код. Удачи!
+ 2
Райхона Воситова
Just repeating steps :
* Declare array of size 22 : int arr[22] ;
* You can directly assign values here or take input into array.
* Take counter variable int count=0;
* by using a loop, check each array value with r, if value not exceeds, increment counter
* print count value..
Done
+ 2
Algorithm,:
1 Add all the elements to an array.
2 Use a sorting algorithm to process the values like insertion sort.
+ 2
Райхона Воситова Нет, он не вам. Он же про дочку писал, которая No написала
+ 1
Спасибо помощь не нужна ) дочка видимо тыкала сидела пока я отошёл от телефона )
+ 1
Denis Умная дочка 🙂👍
+ 1
Ilyas Bakirov понятно
+ 1
Спасибо, что откликнулись 😉
0
Your code ?
0
Loop through the array and increase the counter variable if the height is smaller or equal to r.
Link your code if you need help
0
I told you how to approach the task, read my reply carefully.
Show use your code attempt so we can help you. If you can't come up with an own attempt, revise the basics before you do the task:
https://www.sololearn.com/Course/CPlusPlus/?ref=app
0
No
0
Denis вы щас обо мне?
- 1
this is not homework i didn't understand the task
- 4
yes please write the code