C++ ticket office doesn't work | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 2

C++ ticket office doesn't work

Hi, i don't know, what is wrong All Tests does work except the last test, but it is hidden. Can someone tell me, what ist wrong? My code ist below. Thank you! #include <iostream> using namespace std; int main() { int ages[5]; for (int i = 0; i < 5; ++i) { cin >> ages[i]; } //ouble ages[0]; //your code goes here for(int x=1;x<4;++x){ if(ages[0]>=ages[x]){ ages[0]=ages[x]; } } float price=50; float total=50-50*ages[0]/100; cout<<total; return 0; }

22nd Sep 2022, 9:09 AM
G duck
G duck - avatar
2 Respostas
+ 3
GĆ¼listan Uca There are 5 items in array ages so 2nd loop will be x < 5 and do 100.0
22nd Sep 2022, 9:16 AM
AĶ¢J
AĶ¢J - avatar
0
Thank you!!! Now it works šŸ˜€
22nd Sep 2022, 10:10 AM
G duck
G duck - avatar