아래 알고리즘을 참고하여 X자 모양의 숫자를 출력하는 C 프로그램을 작성해보세요.
Step 1: Start Step 2: Declare variables Step 3: Read number of rows Step 4: for loop satisfies<ul class="list"><li>if(i==j || i+j==rows-1)<ul class="list"><li>print i+1</li></ul></li><li>Print " "</li></ul>Step 5: Print new line Step 6: Stop
X 패턴으로 숫자를 출력하는 로직은 다음과 같습니다 −
for(i=0;i<rows;i++){ for(j=0;j<rows;j++){ if(i==j || i+j==rows-1){ printf("%d",i+1); }else{ printf(" "); } } printf("</p><p>"); }
다음은 X 패턴으로 숫자를 출력하는 C 프로그램입니다 −
#include<stdio.h> main(){ int i,j,rows; printf("Enter number of rows:</p><p>"); scanf("%d",&rows); for(i=0;i<rows;i++){ for(j=0;j<rows;j++){ if(i==j || i+j==rows-1){ printf("%d",i+1); }else{ printf(" "); } } printf("</p><p>"); } }
위 프로그램이 실행되면 , 다음 결과를 생성합니다 −
Enter number of rows:10 1 1 2 2 3 3 4 4 55 66 7 7 8 8 9 9 10 10
위 내용은 X 형식으로 숫자를 표시하는 C 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!