Advertisement
heysoul_sisypus

Linear Search

Dec 15th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. public class JavaApplication96 {
  2.  
  3.     /**
  4.      * @param args the command line arguments
  5.      */
  6.     public static void main(String[] args) {
  7.         String  str="aeioubcd";
  8.         char c=' ';
  9.         c=str.charAt(0);
  10.         System.out.print(c);
  11.     }
  12.    
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement