- 1
String and binary numbers
Problem: Given two binary strings, A (of length 10) and B (of length 5), output 1 if B is a substring of A and 0 otherwise. Input: Binary string A and B separated by a space. Output: The logical value of: 'B is a substring of A'. ie. 1 if B is substring of A else 0. Constraints: Sample Input: 1010110010 10110 Sample Output: 1 I try write code but I can't that please edit it ! #include <io stream.h> #include <conion.h > int A,B; int a,b; main () { A=""; Be=""; if(A%B! =0) B =a; else B =b ; cin>>
1 Odpowiedź
+ 1
O_o
#include <iostream>
using namespace std;
int main () {
string a, b;
cin >> a >> b;
if (a.find (b) != string::npos)
cout << 1;
else
cout << 0;
}