hi i seem to have made an infinate while loop i was wondering if someone could point this newbie to where he went wrong. here’s the source code….
#include
#include
using namespace std; //introduces namespace std
int main( void )
{
int tasknumber = 0;
while(tasknumber < 9)
{
if(tasknumber % 2 == 0)
{
cout<