0 like 0 dislike
5.5k 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
| 5.5k views

15 Answers

0 like 0 dislike
Hidden content!
#include <stdio.h>

int main(){
* * ** * * * **** * n;
*** *** ** * * * *** * space;
    int i,j,k;

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


* ** ******* ** ***** * * * * * = n-1;
** * * ******** *** * ******* * * *
* * ** * ** * * * * * ** * **** * ** * ** * ");

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


** ****** * * * ******* ** * ** * * *** *
* ** * * * ** ** * ** *** * ** * * * *
    }
** **** ***** *** ** **** * 0;
}
answered by (-74 points)
0 0
Case 0: Wrong output
Case 1: Wrong output
0 like 0 dislike
Hidden content!
#include <stdio.h>
int main (){
int n,j,space,i;
printf("enter your line do you want: ");
** ** *** * * ** * ** * *

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

}

return 0;
}
answered by (16 points)
0 0
Case 0: Wrong output
Case 1: Wrong output
0 like 0 dislike
Hidden content!
#include<stdio.h>

int main()
{
**** ** * * * *** **** i, num, rows;

*** * *** ** * ** *** * *** *** ** &num);

*** ** * * ** * * * * * <= i; rows == 0; i++)
* * * *** * ** **
*** ** **** * * *** ** ** *** * * ** * * *** * * ** * *** ****** ****** * * * ** **** *   ");
* * * * **** *** ****** ** **** ** ** ** ****** *** ** * * ***** * * * **  ");
* *** * * * ***** * * * *** *** *** * * * **** *  %d%d%d%d%d ");
** ** ****** * * ** ** *** ** * * *** * *** * * *** * %d%d%d%d%d%d% ");
** **** **** * * ** *** ** * * * *** * ** * * ** **** ** *
* **** **** * * *****
* ** * * * * *** * *** * **
*** * * * ** ** ** * * ** * **** * ** ** *** ** num;
* *** ** ****** *

** ** **** ** * ** * * * * 0;
}
answered by (-233 points)
0 0
prog.c: In function 'main':
prog.c:9:16: error: expected ')' before ';' token
     if(num <= i; rows == 0; i++)
                ^
prog.c:11:25: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("       %d   ");
                         ^
prog.c:12:22: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("    %d%d%d  ");
                      ^
prog.c:12:24: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("    %d%d%d  ");
                        ^
prog.c:12:26: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("    %d%d%d  ");
                          ^
prog.c:13:20: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("  %d%d%d%d%d ");
                    ^
prog.c:13:22: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("  %d%d%d%d%d ");
                      ^
prog.c:13:24: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("  %d%d%d%d%d ");
                        ^
prog.c:13:26: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("  %d%d%d%d%d ");
                          ^
prog.c:13:28: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("  %d%d%d%d%d ");
                            ^
prog.c:14:19: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf(" %d%d%d%d%d%d% ");
                   ^
prog.c:14:21: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf(" %d%d%d%d%d%d% ");
                     ^
prog.c:14:23: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf(" %d%d%d%d%d%d% ");
                       ^
prog.c:14:25: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf(" %d%d%d%d%d%d% ");
                         ^
prog.c:14:27: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf(" %d%d%d%d%d%d% ");
                           ^
prog.c:14:29: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf(" %d%d%d%d%d%d% ");
                             ^
prog.c:14:31: warning: conversion lacks type at end of format [-Wformat=]
         printf(" %d%d%d%d%d%d% ");
                               ^
prog.c:15:18: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                  ^
prog.c:15:20: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                    ^
prog.c:15:22: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                      ^
prog.c:15:24: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                        ^
prog.c:15:26: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                          ^
prog.c:15:28: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                            ^
prog.c:15:30: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                              ^
prog.c:15:32: warning: format '%d' expects a matching 'int' argument [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                                ^
prog.c:15:33: warning: spurious trailing '%' in format [-Wformat=]
         printf("%d%d%d%d%d%d%d%d%");
                                 ^
0 like 0 dislike
Hidden content!
#include<stdio.h>

int main(){
    int a,b,c,d,e,f;
** *** ** * ****** * * ** *** ** * * *
    for(b=1;b<a;b++){
** * *** ** ******* **** * * ** * ** * * *** ** * * * * *
***** *** * *** * * * ** ** ******* * ***** * ** *** ** * ** ** * ");
*** ** *** * **** * **** * * *** * * * ***
*** * ***** * ** * ** * * * ** ** * ** ** ** *** ** *****
********* ***** *** * * * * * * ** ** * * ***** ** ***** * * * *** * * * * ** * * *
* *** ** * *** * *** * * * * * ** ** * * ** ***** ** *
* ** *** * * *** * * ** ** * * ** ** * ** *** * ** *
***** * **** ****** ** * ** ***** * * * ** *** ** ** * ** * * * * ********* * ** *
* ****** * ******* * * *** * * * * ** ****** *** *
* * *** * ** ** ** *** ** * ******** ** ** * * * * *** **** *
    }


* * * *** * * * ** **** **** ** *
**** * **** * * **** * * ** * * *** * * ** * ** ** ** **
    }
***** ***** ***** * *** ** * ** *** * * *
* * * ***** ** * * *** ** * ** * * * *** ** *** ** *
    }









}
answered by (-32 points)
edited by
0 0
prog.c:3:1: warning: return type defaults to 'int' [-Wimplicit-int]
 main(){
 ^~~~
0 0
Case 0: Wrong output
Case 1: Wrong output
0 0
Case 0: Correct output
Case 1: Correct output
0 like 0 dislike
Hidden content!
#include <stdio.h>// program to print triangle pattern
int main()
{
* ** * * *** * ** * a,b,c,d,e;
* ***** **** * ****** * *** * * ** * * * ***
** ** ** ** ***** * * ****** b<=a; b++)
* ********* ** * * * *
*** * * * *** * ** * * ** ** * * c<a-b; c++)

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

****** * ** * * ** * * * ** ***** * ** (d=1; d<b; d++)
* * **** ** * * * * ** ** * * ** * * * * * ****** ** * * ** d);}

* ***** *** ** * *** * * * * *** * ** (e=b; e>=1; e--)
** * * ** * * ** ** ******* *** ***** * **** * * * **** ** e);}
*** **** * ** * * * * * * ** ** * * * * * * * (b!=a)

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

int main()
{
    int n,i,j,a;
******** **** * * ** * *** * * * ** * *
    for(i=1;i<n;i++)
    {
* * * * * ** ** **** * ** ****** ** ** ** ****** j<n; j++)
**** * ** * * * ***** ** ** * * **** * * ** * * ** **
***** * * * * *** *** ** * ** * * * ** * * * * *** *** * * * **** ");
* * * ** ** * * * * * *** ** * *** * ** * * *** *
** * * *** ** * * * * * *** * *** ** * *** (j=1; j<i; j++)
** ** * ** ** *** * *** * * *** ** *** *
* *** * ** * * * ** ** * * * * * * * ** ** ** ** ***** * * * * ***** ** ** ** *
* *** **** **** ***** *** * * ** * *
** * * * **** * * * *** *** * * ** ** * (j=i; j>=1; j--)
* ** **** * * ** ** ** * ***** ** ** **** ** *** * ** * * * * *
* * * *** * * *** * * ** * ******* *** ** * *** ** ****** * * ****** * ** * * ** *
** * ** * * ** ***** * ** * ******* *** ** *** *** * **** **** * * * ** * * ****
    }
for(;i==n;)
    {
** * * ****** ** * ** * ** * ** **** * ** j<n; j++)
** * *** ** ** * * * ** * ***** *
*** * * * * * ** **** ** * * **** ** *** * * ** * ** * *** * ** * ** ** ");
* * * **** ******* ** *** * ** * *
** ** * * * * ***** *** * * ***** ************ (j=1; j<i; j++)
*** * ** ** * ** * ** * * *** * ** * * *
** * ** * * * * * * * * *** * * * * * * * * *** ** ** * ** * * * *** ******* * * *
        }
* **** ** ** * * * *** ** * ******** ** * * ******* (j=i; j>=1; j--)
* *** * * * ** * *** ** ** * * * * *** * ** * * *
* *** *** * *** * **** * * ** * ** ** * *** * ** ***** * * ***** * * *** * ** ** ** ***
* ** ** * * * * **** ** * ******** * ** ** * * *** ** * * *
    return 0;
}}
answered by (-32 points)
edited by
0 0
Case 0: Wrong output
Case 1: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
0 0
Case 0: Wrong output
Case 1: Wrong output
0 0
Case 0: Correct output
Case 1: Correct output
0 like 0 dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>

int main()
{
* * ** ** ** * n,i,j,k,l;
* *** ** *** ***** ** **** ** ***** * *

* * * *** * * *** * i<=n; i++)
    {
* * * ** * * ** * * * * * * **** * * * ** ***** * * j>0; j--)
*** * * * ** * * * ** * *** *** ** ** ** * * ** ** ********** * ** * ");
* * * * * *** * **** ** *** * *** ** ** *** *** k<=i; k++)
** ** * ** ** ******* * ** * * **** ** ** ** * * **** * * * ** ***
* ** * ** * *** * ** * **** * ** * ** ** * * l>=1; l--)
* * ** * ** ** * * ** * * ** ***** * * * * ** * *** ** * ** *** * ** *** * **
** ** *** ** ** * *** ** * ***** ** ** * * ** * != n)
* * * * *** ** * ** * * *** ** * * ** * * ** * ** *** ***** * * * * * * * ** *
    }
* ** *** ** ** * 0;
}
answered by (-127 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()
{
**** *** * * **** **** * * n,i,j,k,l;
** *** * ** **** * *** * ** *** **** ***** **

* *** *** * ** ** * ** ** * * i<=n; i++)
    {
* * ** * * ** ** *** * * * * * * ** j>=0; j--)
****** * ** ** * *** ** ** ****** * * ****** ** ** ******* * * ** *** * ");
*** * **** * **** * * ** ** *** * k<=i; k++)
** * **** * ** ** * ** * ******** ** ****** *** * *** ***** * * *********** **
* * ** *** ** ** * *** ** * * l>=1; l--)
* * ** * * * ** * ** * ***** * *** * ** *** ** * **** ** * ** * ** * ** **** **
** ** **** * * ***** * ** ** * ** ******** *** * != n)
* ** * *** ** * ** ***** *** * * *** ** ** ** *********** ****** ** ** *** ** ***
    }
* * * * ** * ** ** * 0;
}
answered by (-127 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,j,space;
** *** *** * * *** ********** * **** * **** ** *
*** ** * * ** (i=1;i<=a;i++)
    {
* * ** * ** * *** * ** * ***** *** * *** * (space=i;space<a;space++)
* ** * *** * * ** ** *** ** * * ****** * *
*** * * * **** * * * * ** ** * ** ** ** ***** **** * * ** * ");
***** *** ** * * ** * * * ** * *** ***** *
** *** *** * * ******* * * *** **** * ** * (j=i;j<=a;j++)
* * * * ** * * ** * ** ******* * * * *** ** *
* ******** *** * * ** ** *** * ** ** * *** ** ***** * * * ** * * * *** *****
** ** *** **** ********** * ** *** * * ***
***** * ** * *** ** * * *** ** **** ** * ** (j=i-1;j>=a;j--)
** **** **** ** *** ** * ***** * * * * *
* * *** * *** * * * * ** * * * * **** **** ** * * * * * * *** * ** * **** * * *
* ** * * ** * * * ** * * *** * * **
** * ** * *** * *** *** ** * * *** ** (j!=i)
****** ** * * *** *** * * * ** * * * ** * ** ** * **
    }
* * ****** * ** ** ** * * * ** 0;
}
answered by (-108 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 num;
    int i;
    int j;
    int k;
    int l;

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

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

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

* * ** * * * ** ** * 0;
}
answered by (-193 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:104.23.243.109
©2016-2026

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
| 13.5k 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
| 6.2k 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
| 14.7k views
12,783 questions
183,442 answers
172,219 comments
4,824 users