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
import java.util.Scanner; | |
public class TaksiMetre { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
double km, kmFiyat, toplamFiyat = 0, ekstra = 0, baslangicFiyat = 0; | |
System.out.println("Taksi Metre Fiyat Hesaplayıcı v3.6.1"); | |
System.out.print("Gideceğiniz bölgenin kaç (KM) olduğunu giriniz: "); | |
km = input.nextDouble(); |
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
import java.util.Scanner; | |
public class BurcHesaplama { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
System.out.print("Doğum Tarihi (DD/MM/YYYY): "); | |
String doğumTarihi = input.nextLine(); | |
String[] doğumTarihiArray = doğumTarihi.split("/"); |
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
import java.util.Scanner; | |
public class KdvHesaplama { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
double kdv, fiyat, toplamFiyat; | |
System.out.print("Ürün Fiyatı: "); | |
fiyat = input.nextDouble(); |
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
import java.util.Scanner; | |
public class GirisDeneme { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
String user,parola; | |
System.out.print("Kullanıcı Adı: "); | |
user = input.next(); |
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
import java.util.Scanner; | |
import java.util.Random; | |
public class SayiBulmaca { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
Random random = new Random(); | |
int sayi; | |
int tahmin = random.nextInt(100) + 1; | |
System.out.print("Sayı Bulmaca v1.0" | |
+ "| Oyun yükleniyor...."); |
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
import java.util.Scanner; | |
public class SayilariSirala { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
double a,b,c; | |
System.out.print("A : "); | |
a = input.nextDouble(); | |
System.out.print("B : "); | |
b = input.nextDouble(); |
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
import java.util.Scanner; | |
public class AktiviteOner { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
System.out.print("\nv2.0 Aktivite Önerici\n" + | |
"Not: Size bir aktivite önermemiz için lütfen\n hangi mevsimde olduğunuzu belirtiniz." + | |
"\nYaşınızı da belirtiniz."); |
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
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int quiz, vize, ffinal; | |
System.out.print("Quiz notunuzu giriniz: "); | |
quiz = input.nextInt(); |