5차원 숫자는 5항 행 1 4 6 4 1부터 시작하여 왼쪽에서 오른쪽으로 또는 오른쪽에서 왼쪽으로 시작하여 파스칼 삼각형의 모든 행에서 다섯 번째 숫자입니다.
이러한 종류의 숫자 중 처음 몇 개는
1, 5, 15, 35, 70, 126, 210, 330, 495, 715, 1001, 1365
오각형 숫자는 규칙적이고 이산적인 기하학적 패턴으로 표현될 수 있는 숫자 클래스에 속합니다. n번째 5토픽 숫자의 공식은
$$left입니다. ( 시작{배열}{c}n+3 4끝{배열}오른쪽)=왼쪽(분수{n(n+1)+(n+2)+(n+3)}{24}오른쪽)=왼쪽(분수 { n^2}{4!}right)$$
펜토토프 수를 찾으려면 사용자로부터 N번째 용어를 수락하세요.
공식을 사용하세요
$$left(begin{array}{c}n+ 3 4end{배열}오른쪽)=왼쪽(소수{n(n+1)+(n+2)+(n+3)}{24}오른쪽)=왼쪽(소수{n^2}{4!}오른쪽 )$$
/* Program to print pentatope numbers upto Nth term */ #include<stdio.h> int main() { int n, n1, nthterm, nthterm1, i; clrscr(); printf("</p><p> Please enter the nth term to print Pentatope: "); scanf("%d",&n); nthterm = n * (n + 1) * (n + 2) * (n + 3) / 24; printf("The Pentotpe Number is: "); printf("%d", nthterm); printf("</p><p></p><p>"); printf("Printing the Pentotope Numbers upto Nth Term"); printf("</p><p> Print Pentatope Numbers till the term: "); scanf("%d",&n1); printf("</p><p></p><p>"); printf("The Pentotope Numbers are:"); printf("</p><p></p><p>"); for (i = 1; i <= n1; i++){ nthterm1 = (i * (i + 1) * (i + 2) * (i + 3) / 24); printf("%d\t", nthterm1); } getch(); return 0; }
위 내용은 C언어로 N개의 오각형 숫자를 출력하는 프로그램을 작성하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!