Q:

Write a program in C to display the first 10 lucus numbers

0

Write a program in C to display the first 10 lucus numbers


Expected Output :
The first 10 Lucus numbers are:
2 1 3 4 7 11 18 29 47 76

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

# include 
# include 
# include 

int main() 
{
	printf("\n\n Find the first 10 lucus numbers: \n");
	printf(" -------------------------------------\n");
	printf(" The first 10 Lucus numbers are: \n");

    int n = 10;  
     int n1 = 2, n2 = 1, n3;  
        if (n > 1)
		{  
			printf("%d %d ",n1,n2);
            for(int i = 2; i < n; ++i)
			{  
                n3 = n2;  
                n2 += n1;  
                n1 = n3;  
				printf("%d ",n2);
            } 
			printf("\n");
        }  
        else if (n == 1)
        {
		printf("%d ",n2);		
			printf("\n");		   
        }
        else 
        { 
			printf("Input a positive number.\n");
        }
}  

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now