實現一個數字三角形的方法如下:
以下是一個簡單的C語言程序實現數字三角形的例子:
#include <stdio.h>
int main() {
int n, num = 1;
printf("Enter the number of rows: ");
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= i; j++) {
printf("%d ", num);
num++;
}
printf("\n");
}
return 0;
}
在這個例子中,用戶輸入數字三角形的行數n,然后程序根據輸入的行數輸出相應的數字三角形。例如,如果用戶輸入3,程序將輸出如下數字三角形:
1
2 3
4 5 6