**fig1_3.txt** /* 1*/ int /* 2*/ Bad( const int N ) /* 3*/ { /* 4*/ if( N == 0 ) /* 5*/ return 0; /* 6*/ else /* 7*/ return Bad( N / 3 + 1 ) + N - 1; /* 8*/ }