fork download
  1. public class linearSearch {
  2. public static void main(Integer key){
  3. System.debug('Linear Search');
  4. integer s = -1;
  5. List<integer> lon = new List<integer> ();
  6. lon.add(3);
  7. lon.add(4);
  8. lon.add(5);
  9. lon.add(6);
  10. System.debug('List: '+lon);
  11. for(integer i = 0; i < lon.size(); i++)
  12. {
  13. if (key == lon[i])
  14. {
  15. s = 1;
  16. }
  17. }
  18. if (s == 1)
  19. {
  20. System.debug('Element Found');
  21. }
  22. else
  23. {
  24. System.debug('Element Not Found');
  25. }
  26. }
  27. }
  28.  
  29.  
  30.  
  31.  
  32. //Run
  33.  
  34. // linearSearch.main(7);
Success #stdin #stdout #stderr 0.01s 8864KB
stdin
Standard input is empty
stdout
Object: UndefinedObject error: did not understand #linearSearch
MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254)
UndefinedObject class(Object)>>doesNotUnderstand: #linearSearch (SysExcept.st:1448)
UndefinedObject>>executeStatements (prog:1)
stderr
./prog:2: parse error, expected '}'