(mantıksal ifadeler)
using System;
using
System.Collections.Generic;
using
System.Text;
namespace fokCA
{
class Program
{
static void Main(string[]
args)
{
double
x, y, z, d,c;
Console.WriteLine("x sayısını giriniz");
Console.WriteLine("y sayısını giriniz");
Console.WriteLine("z sayısını giriniz");
Console.WriteLine("c sayısını giriniz");
x = Convert.ToDouble(Console.ReadLine());
y = Convert.ToDouble(Console.ReadLine());
z = Convert.ToDouble(Console.ReadLine());
c = Convert.ToDouble(Console.ReadLine());
if
(x >= y - c)
{
d = x + y + c;
}
else
{
d = x * y * z;
}
Console.WriteLine("işlem sonucu:{0}",d);
Console.ReadLine();
}
}
}
CEVAP)
x sayısını giriniz
y sayısını giriniz
z sayısını giriniz
c sayısını giriniz
3
4
5
6
İşlem sonucu:13
Hiç yorum yok:
Yorum Gönder