Skip to content

Instantly share code, notes, and snippets.

View hamikaya's full-sized avatar
🏠
Working from home

Hami Kaya hamikaya

🏠
Working from home
  • Eskisehir, Turkey
View GitHub Profile
@hamikaya
hamikaya / gist:e423fc2f7583adb6754412e3781c3376
Last active December 27, 2017 19:34
Algoritma Programlamaya Giriş
package algoritma;
import java.util.*;
public class ikinci_soru {
public static void main(String[] args) {
Scanner giris = new Scanner(System.in);
System.out.print("Cümle Girin:");
String cumle = giris.nextLine();
int harf_sayi = cumle.length();
System.out.print("Girdiğiniz cümlenin tersten yazılışı: ");