回复 第6楼 liusf1988 的帖子
我用vc编译的,运行没有什么问题
yixiong89921.blog./
#include <stdio.h> #define N 100 int main(void) { int a[N]; int i,j; char ch; printf("input a:\n"); for(i=0;(ch=getchar())!='\n';++i) { if(ch>='0'&&ch<='9') a[i]=ch-'0'; else --i; } printf("this is %d:\n",i); for(j=0;j<i;++j) printf("%d%c",a[j],(j+1)%10==0?'\n':' '); printf("\n"); return 0; }