You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
416 B
41 lines
416 B
11 months ago
|
int N;
|
||
|
|
||
|
int newline;
|
||
|
|
||
|
int split(int n ,int a[])
|
||
|
{
|
||
|
int i;
|
||
|
i=N-1;
|
||
|
while(i!=-1)
|
||
|
{
|
||
|
a[i]=n%10;
|
||
|
n=n/10;
|
||
|
i=i-1;
|
||
|
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
N=4;
|
||
|
newline=10;
|
||
|
int i;
|
||
|
int m;
|
||
|
int b[4];
|
||
|
m = 1478;
|
||
|
m = split(m,b);
|
||
|
int t;
|
||
|
i=0;
|
||
|
while(i<4)
|
||
|
{
|
||
|
t=b[i];
|
||
|
putint(t);
|
||
|
putch(newline);
|
||
|
i=i+1;
|
||
|
|
||
|
}
|
||
|
return 0;
|
||
|
}
|