Description
8 elemanlı float diziye klavyeden değer girin. Girilen değerlerin ortalamasını hesaplayıp ekrana yazdırın.
Enter a value from the keyboard to the 8-element float array. Calculate the average of the entered values and print it on the screen.
Klavyeden -1 girilene kadar girilen sayıları diziye aktaran, ardından her elemanın karesini ekrana basan programı yazınız. (Dizi eleman sayısı max 10 olacaktır.)
Write a program that transfers the numbers given until -1 is entered from the keyboard, and then prints the square of each element to the screen. (The number of array elements will be maximum 10.)
Maksimum 5 basamaklı sayının basamaklarındaki rakamları diziye atan ve ekrana basan programı yazınız.
Write a program that assigns the digits of the maximum 5-digit number to an array and prints it to the screen.
10 elemanlı diziyi klavyeden alan ve tersten ekrana yazan programı yazınız.
(1,5,2,4,5,6,78,12,1,3 => 3,1,12,78,6,5,4,2,5,1)
Write a program that takes a 10-element array from the keyboard and writes it in reverse to the screen. (1.5,2,4,5,6,78,12,1.3 => 3.1,12,78,6,5,4,2,5,1)
Reviews
There are no reviews yet.