Question-Write the program without using goto , check page no. 159.
Solution-
#include<stdio.h>
int main( )
{
int i, j, k ;
for ( i = 1 ; i <= 3 ; i++ )
{
for ( j = 1 ; j <= 3 ; j++ )
{
for ( k = 1 ; k <= 3 ; k++ )
{
if ( i == 3 && j == 3 && k == 3 )
printf("out of the loop at last !\n");
else
printf ( "%d %d %d\n", i, j, k ) ;
}
}
}
getch();
}
Solution-
#include<stdio.h>
int main( )
{
int i, j, k ;
for ( i = 1 ; i <= 3 ; i++ )
{
for ( j = 1 ; j <= 3 ; j++ )
{
for ( k = 1 ; k <= 3 ; k++ )
{
if ( i == 3 && j == 3 && k == 3 )
printf("out of the loop at last !\n");
else
printf ( "%d %d %d\n", i, j, k ) ;
}
}
}
getch();
}
No comments:
Post a Comment