mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +08:00
10 lines
151 B
C
10 lines
151 B
C
#include <stdio.h>
|
|
int main(void){
|
|
int a[10],i;
|
|
for (i = 1; i <= 10; i++)
|
|
{
|
|
a[i]=0;
|
|
printf("%d\n",i);
|
|
}
|
|
return 0;
|
|
} |