Chênh lệch độ dài

View as PDF

Points: 100 (p) Time limit: 1.0s Memory limit: 256M Input: stdin Output: stdout

Cho 2 chuỗi kí tự \(a\)\(b\). Hãy in ra độ chênh lệnh độ dài của \(2\) chuỗi.

Input

  • Dòng thứ nhất là chuỗi kí tự a.
  • Dòng thứ hai là chuỗi kí tự b.

Output

  • Gồm một dòng duy nhất là kết quả cần tìm.

Lưu ý: Chuỗi nhập vào có thế có dấu khoảng trống (dùng getline).

Example

Test 1

Input
zzzzzz aa
ssssss aaaaaa 
Output
4

Comments


  • 0
    tranvanminhnhat123    8:11 p.m. 6 may, 2024

    include<bits/stdc++.h>

    using namespace std;
    int main()
    {
    string a,b;
    getline(cin,a);
    getline(cin,b);
    if(a.size()>=b.size()){
    cout<<a.size()-b.size();
    } else
    {
    cout<<b.size()-a.size();
    }
    }
    Code C++ cho ai cần!


    • 0
      hyyz2032    12:26 p.m. 29 apr, 2024
      sì poi lơ

      print(abs(len(input())-len(input())))


      • 0
        PY2ETranNgocHuy    10:16 a.m. 5 aug, 2023

        python:
        a=input()
        b=input()
        print(abs(len(a)-len(b)))


        • 0
          mondellbit09    12:47 p.m. 30 sep, 2022

          abs đúng mà


          • 4
            dkm    9:34 a.m. 16 may, 2021

            Bài này chỉ cần string 2 biến r lấy size biến lớn trừ biến bé r in ra là xong thôi

            include<bits/stdc++.h>

            using namespace std;
            int main(){
            string a,b;
            getline(cin,a);
            getline(cin,b);
            if(a.size()>=b.size()){
            cout<<a.size()-b.size();
            }else{
            cout<<b.size()-a.size();
            }
            }

            1 reply

            • 0
              danh    12:30 p.m. 25 jan, 2021

              bai nay dung abs ma


              • 0
                huygamer2043    3:11 p.m. 25 sep, 2020

                Bài này phải dùng lệnh thường nếu dùng abs thì sẽ bị lỗi ngay :l

                1 reply

                • 0
                  demons02    8:02 p.m. 22 jul, 2020 edited

                  ...