Advertisement
YArt

Untitled

Sep 3rd, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. using System;
  2. namespace ConsoleApplication1
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. Console.WriteLine("Enter ur text");
  9. string text = Console.ReadLine();
  10. Console.WriteLine("Enter a word to search");
  11. string word = Console.ReadLine();
  12. if (text.Contains(word)) Console.WriteLine("exist");
  13. else Console.WriteLine("does not exist");
  14. Console.Read();
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement