Link to home
Start Free TrialLog in
Avatar of strmtrpr
strmtrpr

asked on

loops

I have a for loop to output a table
for(int i=0;i<=table;i++)

now I want to stop if i=12 and print out some data

then continue for rest of the count of i.

thanks for the help.
ASKER CERTIFIED SOLUTION
Avatar of nietod
nietod

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of strmtrpr
strmtrpr

ASKER

I forgot the == I tried it with i=12;

thanks for the help.