1^2 = 1
11^2 = 121
111^2 = 12321
1111^2 = 1234321
11111^2 = 123454321
#include
#include
#include
void main()
{
clrscr(); int n;//soullessgod
cout<<"\n enter number of lines ";//whatsoever
cin>>n;
int a=1,b,s=1;
for(;a<=n;s=s*10+1)
{
for(b=n-a;b>=1;b--)
{
cout<<" ";
}
cout<
a++;
}
getch();
}
Chat with our AI personalities
for(int r=1; r<=5; r++)
{
for(int sp=5-r; sp>0; sp--)
System.out.print(" ");
for(int c=r; c>=1; c--)
System.out.print(c);
for(int c=2; c<=r; c++)
System.out.print(c);
System.out.print("\n");
}
for(int r=1; r<=5; r++)
{
for(int sp=r; sp>=1; sp--)
System.out.print(" ");
for(int c=5-r; c>=1; c--)
System.out.print(c);
for(int c=2; c<=5-r; c++)
System.out.print(c);
System.out.print("\n");
}
the series continues with the length of odd series ie.1,3,5,7...so on.the middle integer is extra sdded in every number.it's general structure is
(inital numbers)(extra number)(reverse of initial numbers)
extra number is always multplied by 2 with last extra number added
char s[50];
s[0]=1;
for(i=1;i<n;i++)
{
traverse the array to next middle position
add the extra element in between the elements
concatenate the reverse part of initial elements
}
this can b done as
for(i=1,j=0;i<n;i=strlen(s),j++)
{
for(k=i;k>j;k--)
{
s[k+1]=s[k];
}
s[j+1]=s[j-1]*2;
s[i+3]='\0';
print s;
}
/*determine the pattern 1234321*/ #include<stdio.h> #include<conio.h> main() { int i, j; for (i=1; i<=7; i++) { if (i<5) { j=i; printf("\n %d", j); } else { j=8-i; printf("\n %d", j); } } getch() }
#include#includevoid main(){clrscr();for (int i=1;i
If you visualize 1123581321 as a set of numbers (without spaces in between) instead of one number, you'll see that it's a set of the first 8 Fibnocci nos. - 1 1 2 3 5 8 13 21. The following program would print the required no. using a For looping structure. int main (void) { int i=1; int j=1; int k, num=1; for(k=0; k<7; k++){ if(k==0){ printf("%d", num); } printf("%d", num); //next no. is the sum of previous two nos. in the series i=j; j=num; num=i+j; // 1 + 1 = 2 ... 1 + 2 = 3 ... 2 + 3 = 5 ... 3 + 5 = 8 // sum=i + j ... i takes value of j ... j takes value of sum ... repeat. } }
0
1) source program to object program 2)object program to object program output