在计蒜客oj用c++编写的一个简单的代码出现段错误
阿神
阿神 2017-04-17 14:59:56
0
2
616

#include<iostream>
using namespace std;

int main(void)
{
    char a[50],b[50],ch;
    int i = 0,j = 0;
    cin.get(ch);
    while(ch != '\n')
    {
        a[i] = ch;
        i++;
        cin.get(ch);
    }
   // getchar();
    cin.get(ch);
    while(ch != '\n')
    {
        b[j] = ch;
        j++;
        cin.get(ch);
    }
   // getchar();
    
    for(int n = 0;n < i;n++)
    {
        if(a[n] == '1' && b[n] == '1')
        {
            cout << '1';
        }
        else if(a[n] == '1' && b[n] == '0')
        {
            cout << '0';
        }
        else if(a[n] == '0' && b[n] == '1')
        {
            cout << '0';
        }
        else
        {
            cout << '1';
        }
    }
    
    return 0;
}

样例输入没有错误,只是一直说是段错误,求大神看看

阿神
阿神

闭关修行中......

全部回覆(2)
PHPzhong

把a[50],b[50]都改成a[51] 和 b[51]應該就行了吧

Peter_Zhu

其實如果使用異或判斷的話就不用數組了,先異或再取反。

!(1 ^ 1) = 1
!(1 ^ 0) = 0
!(0 ^ 1) = 0
!(0 ^ 0) = 1

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!