16.07.2015 Views

Java Temel Bilgiler (Türkçe Kitap-Pdf)

Java Temel Bilgiler (Türkçe Kitap-Pdf)

Java Temel Bilgiler (Türkçe Kitap-Pdf)

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Girilen cümle içerisinde geçen ‘a’,’e’,’i’,’o’,’u’ (‘A’,’E’,’I’,’O’,’U’) harflerinin yerine ‘*’karakterini getiren uygulama;//sbuilder1.javaimport java.util.Scanner;public class sbuilder1{static Scanner alinan = new Scanner(System.in);public static void main(String[] args){System.out.print("Bir Cumle Giriniz: ");String s = alinan.nextLine();StringBuilder sb1 = new StringBuilder(s);int sesliharfsayisi = 0;for (int i = 0; i < s.length(); i++){char c = s.charAt(i);if ( (c == 'A') || (c == 'a')|| (c == 'E') || (c == 'e')

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!