Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.64 KB | None | 0 0
  1. import java.util.*;
  2. import java.io.*;
  3.  
  4. public class Programik {
  5.     public static void main(String[] args){
  6.         System.out.print("Wynik wyszukiwania 1: ");
  7.         System.out.println( strfind("ToJestPrzykladowyTekst","Jest"));
  8.         System.out.print("Wynik wyszukiwania 2: ");
  9.         System.out.println( strfind("ToJestPrzykladowyTekst","Tekst"));
  10.         System.out.print("Wynik wyszukiwania 3: ");
  11.         System.out.println( strfind("ToJestPrzykladowyTekst","Ufo"));
  12.         System.out.print("Wynik wyszukiwania 4: ");
  13.         System.out.println( strfind("ToJestPrzykladowyTekst",""));
  14.     }
  15.    
  16.     public static int strfind(String gdzie, String co)
  17.     {
  18.        
  19.         return gdzie.indexOf(co);
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement