C程序:将int分解为int数组[]

时间:2011-05-08 00:21:57

标签: c arrays

所以我正在研究Zeller的Rule c程序,尝试将代表特定日期年份的4位int分成2个不同的int变量,包含前2位数和所述年份的最后2位数。

void main()
{
    int day, month, year;
    .
    .
    .
    printf("Enter a Year: ");
    scanf("%i",&year);
    .
    .
    .
    int data, i;    
    int split[3];
    for(i=3 ; i>=0 ; i--)           //Problem is in the loop
    {
        data = year % 10;
        split[i] = data;
        year /= 10; 
        printf("Data%i: %i, should be %i\n", i, split[i], data);
    }
}

以上代码输出:(int year = 1234)

Data3: 0, should be 4
Data2: 0, should be 0
Data1: 0, should be 0
Data0: 0, should be 0

但是,如果我将标记为上述问题的循环修改为:

int data, i;    
int split[3];
for(i=3 ; i>=0 ; i--)      //Data is all there, correctly
{                          //Problem arises when I try to store to my array
    data = year % 10;
    year /= 10; 
    printf("Data%i: should be %i\n", i, data);
}

上述代码的输出更改:(int year = 1234)

Data3: should be 4
Data2: should be 3
Data1: should be 2
Data0: should be 1

一旦我尝试将IS THERE的数据放入我的数组中,我完全失去了为什么程序0出来了。几个小时让我头疼,因为我显然不知道问题是什么。

1 个答案:

答案 0 :(得分:1)

你的spit数组中有3个单元格(int split[3]),但你分配了4次:

for(i=3 ; i>=0 ; i--)

将其更改为int split[4]