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 Giris; | |
import java.util.Scanner; | |
public class Baslangic { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int mathsGrade,physics,chemistry,turk,history,music; | |
int average=0; |
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 KDV { | |
public static void main(String[] args) { | |
//KDV Hesaplama - KDV Calculation | |
Scanner input= new Scanner(System.in); | |
double total=0, kdv=0; | |
System.out.println("Enter the fee amount:"); |
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 triAreaCalculation { | |
public static void main(String[] args) { | |
// Kenar Uzunlukları bilinen üçgenin alanını hesaplama | |
//Calculating the area of a triangle with known side lengths | |
Scanner input= new Scanner(System.in); | |
int first,second,third; | |
double area=0, u=0; | |
System.out.print("First side of triangle:"); | |
first=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 CircleArea { | |
public static void main(String[] args) { | |
Scanner input= new Scanner(System.in); | |
int angle,r; | |
System.out.print("Circle Angle:"); | |
angle=input.nextInt(); | |
System.out.print("Circle r:"); | |
r=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 VucutKitleİndeks { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
double boy,kilo; | |
System.out.print("Lütfen boyunuzu (metre cinsinde) giriniz :"); | |
boy=input.nextDouble(); | |
System.out.print("Lütfen kilonuzu giriniz :"); | |
kilo=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 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 :"); |
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 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 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(); | |
OlderNewer