在C语言中编写一个打印数字模式的程序

/*Program to print Numeric Pattern */
#include
int main()
{
int k, l, m, count=1;
int rows;
clrscr();
printf("

Please enter the number of rows for the Numeric Pattern: ");
scanf("%d",&rows);
for (k = 1; k