Hello, we are really happy that you have reached us. However, since you are viewing the forum as a visitor, you cannot benefit from many features of the forum. How about taking advantage of all the features exclusive to our members by registering? You can register right now, taking just 2 minutes of your time. We would love to see you among us.
Kullanıcının Girdiği Sayının Negatif mi, Pozitif mi Olduğunu Bulan Java Programı
import java.util.Scanner;
public class JavaOrnekleri {
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
System.out.print("Bir Sayı Girin:")...
Klavyeden girilen a ve b değerlerine göre sonuc=a2+2ab+b2 formülünü hesap eden program
double a, b,sonuc;
Console.WriteLine("a yı gir");
a = double.Parse(Console.ReadLine());
Console.WriteLine("b yı gir");
b = double.Parse(Console.ReadLine());
sonuc = ((a * a) + 2*(a*b) + (b * b))...