This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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ışı: "); |