Home C 57. Pattern 10 57. Pattern 10 / August 03, 2017 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5 Code: #include<stdio.h> int main() { int n,i,j,k=1,x; scanf("%d",&n); x=n; for (i=1;i<=n;i++) { for(j=1;j<=x;j++) { printf("%d ",k); } printf("\n"); k++; x--; } return 0; } You Might Also Like Write a program that calculate the sum of the ff. quantities. In each case, N indicates a quantity specified by user. A. 1+½+⅓+¼...+¹/N=_____ B. 1²+2²+3²+... N²=______October 06, 2017Single number as a command line argumentOctober 02, 2017How to swap two numbers by using function September 29, 2017 Post a Comment
No comments