Home C 56. Pattern 9 56. Pattern 9 / August 03, 2017 5 5 5 5 5 4 4 4 4 3 3 3 2 2 1 Code: #include <stdio.h> int main() { int n,i,j,a,k=1; scanf("%d",&n); a=n; for(i=0;i<n;i++) { for(j=n;j>=k;j--) { printf("%d ",a); } a--; k++; printf("\n"); } 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