- 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>>

10th Mar 2017, 9:05 PM
Mohamed Abdalla
Mohamed Abdalla - avatar
1 Réponse
+ 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; }
7th Apr 2017, 11:49 AM
SUPER_S
SUPER_S - avatar