Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

odev1 #153

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

odev1 #153

wants to merge 1 commit into from

Conversation

Mamiyavuz-X
Copy link

using System;

class github
{
static void Main()
{
// Arac turu ve kalma suresini kullanicidan al
Console.Write("Arac Turunu Girin (otomobil,motor,kamyon,helikopter): ");
string aracTuru = Console.ReadLine().ToLower();

    Console.Write("Kalma suresini saat türünden girin: ");
    int kalmaSuresi = int.Parse(Console.ReadLine());

    // Ucret degiskeni
    decimal ucret = 0;

    // Ucret hesaplama
    switch (aracTuru)
    {
        case "otomobil":
            if (kalmaSuresi <= 2)
                ucret = 5;
            else if (kalmaSuresi < 10)
                ucret = 5 + (kalmaSuresi - 2);
            else
                ucret = 50; // Gunluk sabit ucret
            break;

        case "kamyon":
            if (kalmaSuresi <= 2)
                ucret = 13;
            else if (kalmaSuresi < 8)
                ucret = 8 + 2 * (kalmaSuresi - 2);
            else
                ucret = 103; // Gunluk sabit ucret
            break;

        case "helikopter":
            if (kalmaSuresi <= 2)
                ucret = 50;
            else if (kalmaSuresi < 8)
                ucret = 50 + 3 * (kalmaSuresi - 2);
            else
                ucret = 500; // Gunluk sabit ucret
            break;

        default:
            Console.WriteLine("gecersiz arac turu");
                return;


    }

    // sonuc
    Console.WriteLine($"Toplam Ucret: {ucret} TL");
}

}

@Mamiyavuz-X
Copy link
Author

using System;

namespace FitlikHesaplama
{

class boykilo
{

    static void Main(string[] args)
    {

        // kullanicidan veri alalım
        Console.Write("boyunuzu (cm) girin");
        int boy = int.Parse(Console.ReadLine());

        Console.WriteLine("Kilonuzu (kg) olarak girin");
        int kilo = int.Parse(Console.ReadLine());

        Console.Write("cinsiyetinizi (erkek/kadin-) giriniz: ");
        string cinsiyet = Console.ReadLine().ToLower();

        // fitlik orani hesaplama
        double idealKilo;

        if (cinsiyet == "erkek")
        {
            idealKilo = boy - 100;
        }
        else if (cinsiyet == "kadin")
        {
            idealKilo = boy - 115;
        }
        else
        {
            Console.WriteLine("gecersiz cinsiyet girisi! (ya kadınsın ya erkek baska cinsiyet yok!)");
            return;
        }


        // fit kontrol
        if (kilo >= idealKilo - 5 && kilo <= idealKilo + 5)
        {
            Console.WriteLine("ideal kilodasiniz.");
        }
        else if (kilo > idealKilo + 5)
        {
            Console.WriteLine("fazla kilolusunuz.(alinmayin sakin)");
        }
        else
        {

            Console.WriteLine("zayifsiniz.");
        }
    }
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant