寒假6.2

作者: wolfway_d0ff | 来源:发表于2019-01-30 09:13 被阅读0次

    Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second.
    One day in 230 AD Shapur was trying to find out if any one can possibly do calculations faster than him. As a result he made a very great contest and asked every one to come and take part.
    In his contest he gave the contestants many different pairs of numbers. Each number is made from digits 0 or 1. The contestants should write a new number corresponding to the given pair of numbers. The rule is simple: The i-th digit of the answer is 1 if and only if the i-th digit of the two given numbers differ. In the other case the i-th digit of the answer is 0.
    Shapur made many numbers and first tried his own speed. He saw that he can perform these operations on numbers of length ∞ (length of a number is number of digits in it) in a glance! He always gives correct answers so he expects the contestants to give correct answers, too. He is a good fellow so he won't give anyone very big numbers and he always gives one person numbers of same length.
    Now you are going to take part in Shapur's contest. See if you are faster and more accurate.
    Input
    There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
    Output
    Write one line — the corresponding answer. Do not omit the leading 0s.
    Examples
    Input
    1010100
    0100101
    Output
    1110001
    Input
    000
    111
    Output
    111
    Input
    1110
    1010
    Output
    0100
    Input
    01110
    01100
    Output
    00010
    本题解题需用到字符串而非数组,定义三个字符串,前两个用于输入,后一个用于写入输出数。

    #include<iostream>
    using namespace std;
    int main()
    {
        char a[100], b[100], c[100];
        int i;
        cin >> a;
        for(i=0;a[i]!='\0';i++){}
        for (int j = 0; j < i; j++)
        {
            cin >> b[j];
        }
        for (int j = 0; j < i; j++)
        {
            if (a[j] == b[j])
            {
                c[j] = '0';
            }
            else
                c[j] = '1';
        }
        for(int j=0;j<i;j++)
        cout << c[j];
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:寒假6.2

          本文链接:https://www.haomeiwen.com/subject/wljqsqtx.html