User profile: Pindrought

User info
User name:Pindrought
History
Joined:
Number of posts:305
Latest posts:

C++ || Help With Console Menu & Status
He told you what to do. You need to use a loop and put your processing inside of the loop.

if statement with math?
You need to do either Totalnets -= 35; Or Totalnets = Totalnets - 35;

im a little bit lost here about the array
[code]#include <iostream> int countNum2s(int arr[], int size) { int count = 0;//start count at 0 ...

LOOP HELP
[quote]It would go out of bounds only if your condition is bad.[/quote] Hence why I said could. ^^ ...

Vowel Counter Program Problem
Your if statements are wrong for two reasons. The first reason is you are using = instead of == to ...