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 artikYil { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int yil,artik=0, artikY=0; | |
System.out.print("Yıl Giriniz : "); | |
yil = input.nextInt(); |
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 zodyakHesaplama { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int yil; | |
System.out.print("Doğum Yılınızı Giriniz : "); | |
yil = input.nextInt(); | |
int hes=yil%12; |
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 UcakBileti { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int mesafe,yas,yolculuktipi; | |
double ucret=0; | |
System.out.print("Mesafeyi km türünden giriniz : "); | |
mesafe = input.nextInt(); |
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 burcunuBul { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int gun,ay; | |
System.out.print("Doğum ayınız: "); | |
ay = input.nextInt(); | |
System.out.print("Doğum gününüz: "); |
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 büyüksayi { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int sayi1, sayi2, sayi3, enbuyuk; | |
System.out.print("1.Sayı: "); | |
sayi1 = input.nextInt(); | |
System.out.print("2.Sayı: "); | |
sayi2 = input.nextInt(); |
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 HavaDurumu { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int sicaklik; | |
System.out.print("Sıcaklık Giriniz:"); | |
sicaklik = input.nextInt(); | |
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 NotHesaplama { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int mat, turk, kimya, muzık, fizik; | |
int toplam = 0, count = 0; | |
System.out.print("Matematik Notu:"); | |
mat = input.nextInt(); |
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 KullanıcıGirisi { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
String password,username; | |
String newpass,YesNo=""; | |
String username1="patika", password1="java101"; | |
System.out.print("Kullanıcı Adınız :"); |
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 HesapMakinesi { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int sayi1,sayi2, secim; | |
System.out.print("İlk sayıyı giriniz :"); | |
sayi1=input.nextInt(); | |
System.out.print("İkinci sayıyı giriniz :"); |
NewerOlder