0 like 0 dislike
3.2k views

Print this pattern

Input

5

Output

    1
   121
  12321
 1234321
123454321

Input

8

Output

       1
      121
     12321
    1234321
   123454321
  12345654321
 1234567654321
123456787654321

 

[Exam] asked in Midterm by (12.1k points)
ID: 36755 - Available when: 2017-11-15 14:10 - Due to: Unlimited
| 3.2k views

15 Answers

0 like 0 dislike
Hidden content!
#include<stdio.h>
int main(void)
{
    int n;
** ** * ** ** ** ** **** * ** * *
    int i,s,j,k;
    int c=0;
    for(i=1;i<=n;i++)
    {

*** * * * ** ** * * *** ***** ** **** ** * **** ** **
** ** * * * ** * * * * * * ** ***** ** *** * * * *
**** * * * * *** * ** * *** * * * * ** * ****** * ** * ********** ** * * *** ");
** *** * * * ** *** **** *** ** * **** ** * *
** * * **** ** * * *** ****** *** * **** * ** * * *
*** **** * **** * * * * ***** * ** ** **
* ** ** *** * * * *** * * **** ** * * ** ********* **** **** * ** * *** ** ****
** ****** *** ******** ** * *** * * ** * **** *** **
* ****** ** * * * ***** ***** ** * ** ** * ** ** ** ***
* * ***** * * * ***** * **** *** * * ** * *** **
******* * * **** * *** ** ** ****** * * ** ** * ***** * **** ** ***** *
* * ** * ***** * ** *** * * ** * * * * * * * * ***** *
*** * *** ** * * ** ** * *** * * *** ** *** *****
* **** * ***** * *** *** *** *** **** ****** ** ** **
*** **** * * ** *** * * **** *** ** *** * * * ** ***
**** *** * *** * * * *** * * * * * * * *
**** ** ** * ** *** ** ** * ** * *** * * *** * * * * * *** ** * **
* ** ** *** * ****** ** * **** *** * * * ***
    }
}
answered by (-249 points)
0 0
Case 0: Correct output
Case 1: Correct output
0 like 0 dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int num;
    int i;
    int j;
    int k;
    int l;

***** * * **** * * **** * ** * * *** * * ***

** * **** ** * * ***** **** ** * * * * * *
    {

** ** ** *** *** * *** * * ** * ** ** ** **** ** ****
* **** * * * ****** *** ******* **** * ******
** ** * * *** ***** ** ** ***** * * ** ** *** *** *** **** ***** ");
** * * ** * * *** * *** * * ** ** * ** **
**** * * ****** ****** * ** * * * * *** ** ** * * **
******** * *** *** * *** ****** * *
* **** ** ** ** * *** * * ** ** *** ** ** **** ** *** * * ** * *** * *
* *** *** *** ** **** * ******** *
* * * *** *** **** * *** ** ********* * * ** * ******* ** *
**** * ** * * ******* * *** * ***** **
* ** ** *** * ** *** * * **** ** * ***** ***** ** * * * * ** * ** * * ***** * **
*** ** * * * * * ** *** * ** * * ** *
** * ** * **** * ****** *** ** ****** *
***** ***** *** * * * * ** * ** * * *
* * * * ** * ******** * * ** * *** ** ** * * * * ** *** * * ** * ** *
** ** ** *** * * * ** * * * * *
    }

* *** * ** ** ** ** *** **** 0;
}
answered by (-193 points)
0 0
Case 0: Wrong output
Case 1: Wrong output
0 like 0 dislike
Hidden content!
#include<stdio.h>
int main(void)
{
    int n;
* * ** ** * ** ** ** **** **** ** * * ** * *** * **
    int i,s,j,k;
    for(i=1;i<=n;i++)
    {
**** **** * * **** * ** ** * ** * ** ***** ****** * *
* *** ***** *** ** *** * * *** **
** **** * *** * * * * *** * ** * *** *** ** ** * *** **** * * * ** **** ");
***** *** * **** * ***** * * ** * * ****** *
** * ** **** * * * * * *** * ***** * ** * * * * *
* ** ********** * ** * ****** *** * * ** **** **
** ** ** ** * * * * ** ** *** * *** * ** * * * ** *** ** * * ** * * ** *
**** ** * * * * ** * * * * *** **** ** *
* * *** ***** * ***** * ** * * **** * *** ** * * * *
** * *** *** * **** ** * * *** * * *
********* * *** * *** * * **** * * ** * ** **** **** *** *** * * ** * * ***
* ** ** * *** * ***** * * *** ** ** * ***** * **
* * **** * ** *** ** ***** * ***** ** * * * *** **
    }
}
answered by (-249 points)
0 0
Case 0: Wrong output
Case 1: Wrong output
0 like 0 dislike
Hidden content!
#include<stdio.h>
int main(void)
{
    int n;
** * ** *** ** * **** ***** *** * **** *
    int i,s,j,k;
    for(i=1;i<=n;i++)
    {
* *** * * **** * ***** * ***** ** ** * * * * ** * * * **
** * ** ** * ** * ***** *** **** *** ***
* ** * *** **** ** ** ** * *** * * * *** ***** ******* * *** * * **** * ** * * ");
** ***** * ******* * ******* * ** ** * **
** ****** ** * **** * *** ******** * * **
* ** * * * * * ** * * * **** ** ** *
** * *** ** ** ********** ** *** * ** ****** ** * * ** * ** ** ** ******* *** * ** *
* *** ** ** ** * **** * **** * * **** **** **
******** *** * ***** *** ** * * * *** * *** * * * *** *
* * * * ** ****** ** ** *** * ** *
* * ** * **** ** * * * * **** ** * ***** * * *** * * ** ** * *** * ** * ** *******
* *** * ** * ** ** ******* ** ** * * * ***
** * * * *** ** * * * * * ** ** **** ** ** ** *** **
    }
}
answered by (-249 points)
0 0
Case 0: Wrong output
Case 1: Wrong output
0 like 0 dislike
Hidden content!
#include<stdio.h>
#include<stdlib.h>
int main ()
{

    int a,i,space,j;

    //enter the number
*** *** ** * ** * * * *** ***** * ****

******* **** *** ** * **** * * *** * * **

** ** * ** * ** ** *** * * * * * * * ***** **
*** ** ** *** * * ** * * ** *** * * * ** * * ** * ");
    }
* ** * ** ** * ** * *** ** *
*** ** **** * *** *** ** *** *** * * * ** ** *** ** ** ***
** * * * * *** * * *** * * * * * * *** *

* **** ** *** *** * *** * * ** * * ** * ***** ***
** ** ****** * *** * * * ** *** * ** ** ** ** * * *** ** * ** ** ****** * *
* * ***** *** * *** * *** * * ******* ** *
* **** **** *** * ****** * * ******** **** ***** **
* ** ** ** ** * *** ** * * * **** ** * ** ** *** ** * * ** * * * * * ** ****
* * ** ** **** ** ** ** ** * * * **** * ** ****
    }
* * * * ** * ** * * ** 0;
}
answered by (-167 points)
0 0
Case 0: Correct output
Case 1: Correct output
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.70.126.100
©2016-2025

Related questions

0 like 3 dislike
58 answers
[Exam] asked Nov 15, 2017 in Midterm by thopd (12.1k points)
ID: 32710 - Available when: 2017-11-15 14:10 - Due to: Unlimited
| 7.9k views
0 like 0 dislike
19 answers
[Exam] asked Dec 9, 2017 in Midterm by thopd (12.1k points)
ID: 36750 - Available when: 2017-11-15 14:10 - Due to: Unlimited
| 3.5k views
1 like 1 dislike
59 answers
[Exam] asked Nov 15, 2017 in Midterm by thopd (12.1k points)
ID: 32351 - Available when: 2017-11-15 14:10 - Due to: Unlimited
| 8.8k views
12,783 questions
183,442 answers
172,219 comments
4,824 users