Computer Science, asked by bitomkoch154, 1 year ago

Print the serise in java 0 3 8 15 24 35 and so on

Answers

Answered by Era3010
1

# include<stdio.h>

void main()

{

int i;

for(i = 1; i <= 10; i++)

{

printf("%d", i * i-1);

}

getch();

}


Similar questions