Napisać program w Javie, który wyszuka znak w tablicy i jesli on się w niej znajduje to wypisze go oraz poda jego pozycję w tablicy.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
No na przykład coś takiego:
public class Tablica {
public static void main(String[] args){
char[] tab = {'a','h','k','j'};
System.out.println("Podaj znak:");try{
char c = (char) System.in.read();
for(int i = 0; i < tab.length; i++){
if(tab[i]==c){System.out.println("Znak "+c+" wystepuje w tablicy.");System.out.println("Jego pozycja to "+i+".");}
}
System.in.read();
}catch(Exception e){}
}
}