NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

package atalaykadir;
import java.util.Scanner;
import java.util.ArrayList;
public class atalaykadiruslu {
public static void main(String[] args) {
String adi_soyadi , tckimlik_numarasi ;
String kurs_türü , temel_programlama , robotik_kodlama , proje_yönetimi ;
String secim ;
int temel_programlama_not1=0 , temel_programlama_not2=0 , temel_programlama_ortalama=0 ;
int robotik_kodlama_not1=0 , robotik_kodlama_not2=0 , robotik_kodlama_ortalama=0 ;
int proje_yönetimi_not1=0 , proje_yönetimi_not2=0 , proje_yönetimi_ortalama=0 ;
Scanner input = new Scanner(System.in);

while(true) {
System.out.print(">>Adınızı ve Soyadınızı giriniz : ");
adi_soyadi= input.nextLine();
while(true) {
System.out.println(">>TC Kimlik Numaranızı giriniz : ");
tckimlik_numarasi = input.nextLine();
if (tckimlik_numarasi.length()==11) {
break;}
else {
System.out.println("!Lütfen TC Kimlik Numaranızı doğru giriniz!");
}
}

System.out.println("--------------------------------------------------");
System.out.println("Kursumuzda 3 adet [Temel Programlama, Robotik Kodlama, Proje Yönetimi] ders bulunmaktadır.");
System.out.println(">>Almak istediğiniz dersi seçiniz : ");
while(true) {
System.out.println("Temel Programlama dersi almak istiyorsanız 'EVET' , istemiyorsanız 'HAYIR' yazınız.");
temel_programlama = input.nextLine();
if (temel_programlama.equals("evet")) {
System.out.println("EVET");
System.out.print("Dersten aldığı 1. notu giriniz : ");
temel_programlama_not1 = input.nextInt();
System.out.print("Dersten aldığı 2. notu giriniz : ");
temel_programlama_not2 = input.nextInt();
temel_programlama_ortalama = (temel_programlama_not1+temel_programlama_not2)/2 ;
System.out.println("Temel Programlama not ortalaması : " +temel_programlama_ortalama);
if (temel_programlama_ortalama <70) {
System.out.println("KALDI");
}
else {
System.out.println("GEÇTİ");
}
}
else {
System.out.println("HAYIR");
}
System.out.println("--------------------------------------------------");
System.out.println("Robotik Kodlama dersi almak istiyorsanız 'EVET' , istemiyorsanız 'HAYIR' yazınız.");
robotik_kodlama = input.nextLine();
if (robotik_kodlama.equals("evet")) {
System.out.println("EVET");
System.out.println("Dersten aldığı 1. notu giriniz : ");
robotik_kodlama_not1 = input.nextInt();
System.out.println("Dersten aldığı 2. notu giriniz : ");
robotik_kodlama_not2 = input.nextInt();
robotik_kodlama_ortalama = (robotik_kodlama_not1+robotik_kodlama_not2)/2 ;
System.out.println("Robotik Kodlama not ortalaması : " +robotik_kodlama_ortalama);
if (robotik_kodlama_ortalama <70) {
System.out.println("KALDI");
}
else {
System.out.println("GEÇTİ");
}
}
else {
System.out.println("HAYIR");
}
System.out.println("--------------------------------------------------");
System.out.println("Proje Yönetimi dersi almak istiyorsanız 'EVET' , istemiyorsanız 'HAYIR' yazınız.");
proje_yönetimi = input.nextLine();
if (proje_yönetimi.equals("EVET")) {
System.out.println("EVET");
System.out.println("Dersten aldığı 1. notu giriniz : ");
proje_yönetimi_not1 = input.nextInt();
System.out.println("Dersten aldığı 2. notu giriniz : ");
proje_yönetimi_not2 = input.nextInt();
proje_yönetimi_ortalama = (proje_yönetimi_not1+proje_yönetimi_not2)/2 ;
System.out.println("Proje Yönetimi not ortalaması : " +proje_yönetimi_ortalama);
if (proje_yönetimi_ortalama <70) {
System.out.println("KALDI");
}
else {
System.out.println("GEÇTİ");
}
}
else {
System.out.println("HAYIR");
}



ArrayList <String> ogrenci_listesi = new ArrayList<String>();
ogrenci_listesi.add(adi_soyadi);
ogrenci_listesi.add(tckimlik_numarasi);
ogrenci_listesi.add(temel_programlama);
ogrenci_listesi.add(robotik_kodlama);
ogrenci_listesi.add(proje_yönetimi);
ogrenci_listesi.get(1);
ogrenci_listesi.get(2);
ogrenci_listesi.get(3);
System.out.println("-------------------------BİLGİLER-------------------------");
System.out.println("Adı ve Soyadı : "+adi_soyadi);
System.out.println("TC Kimlik Numarası : "+tckimlik_numarasi);
System.out.println("-------------------------ALDIĞINIZ DERSLER-------------------------");
System.out.println("Temel Programlama : "+temel_programlama);
System.out.println("Robotik Kodlama : "+robotik_kodlama);
System.out.println("Proje Yönetimi : "+proje_yönetimi);

ArrayList <Integer> ogrenci_not_listesi = new ArrayList<Integer> ();
ogrenci_not_listesi.add(temel_programlama_not1);
ogrenci_not_listesi.add(temel_programlama_not2);
ogrenci_not_listesi.add(temel_programlama_ortalama);
ogrenci_not_listesi.add(robotik_kodlama_not1);
ogrenci_not_listesi.add(robotik_kodlama_not2);
ogrenci_not_listesi.add(robotik_kodlama_ortalama);
ogrenci_not_listesi.add(proje_yönetimi_not1);
ogrenci_not_listesi.add(proje_yönetimi_not2);
ogrenci_not_listesi.add(proje_yönetimi_ortalama);
System.out.println("-------------------------ALDIĞINIZ NOTLAR-------------------------");
System.out.println("Temel Programlama 1. not : "+temel_programlama_not1);
System.out.println("Temel Programlama 2. not : "+temel_programlama_not2);
System.out.println("Temel Programlama ortalaması : "+temel_programlama_ortalama);
System.out.println("--------------------------------------------------");
System.out.println("Robotik Kodlama 1. not : "+robotik_kodlama_not1);
System.out.println("Robotik Kodlama 2. not : "+robotik_kodlama_not2);
System.out.println("Robotik Kodlama ortalaması : "+robotik_kodlama_ortalama);
System.out.println("--------------------------------------------------");
System.out.println("Proje Yönetimi 1. not : "+proje_yönetimi_not1);
System.out.println("Proje Yönetimi 2. not : "+proje_yönetimi_not2);
System.out.println("Proje Yönetimi ortalaması : "+proje_yönetimi_ortalama);
System.out.println("==================================================");
}
}

}
}
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.