1. 1.
    0
    odevi yapamzsam dersten kalicam panpalar okul bir sene uzaycak bi yardim edin ya uni okuyan halimden anlarr
    amk yasar usta yaptiniz beni amk yokmu bi yardimsever panpa yokmuuuuuu
    turkcesi:

    şimdi 2 boyutlu bir a dizisi tanımlanacak main fonk. da. 40x25 türünde. ve bu elemanlar random olarak üretilecek.ve 1 ile 100 arasında olacak. sonra 1 boyutlu bir b dizisi tanımlanacak. bu b dizisi de, a da üretilen elemanlardan karesel olanlarını bünyesine alacak. yani atıyorum a matrisi karesel olarak "4 9 ve 16" yı üretsin, b dizisi 4 9 ve 16 dan oluşacak. bu işi de fonksiyon1 de yaptıracaksınız. sonra fonksiyon1 de ürettiğiniz b matrisinin eleman sayısını main fonksiyona göndereceksiniz ve eleman sayısını bastıracaksınız. fonksiyon2 de de b matrisinin elemanlarını küçükten büyüğe doğru sıralayacaksınız. fakat b matrisinde atıyorum iki kere 9 varsa, siz bunu bir kere yazdıracaksınız. yani sıralamanız 4 9 9 16 diye değil 4 9 16 olmalı gibi.
    işte bundan ibaret.

    ingilizcesi:

    Write a MAIN function and two FUNCTIONS to compute and print the
    elements of a two-dimensional 40X25 integer array A which are square
    numbers.
    A square number is a positive integer that is the square of an integer,
    in other words, it is the product of some integer with itself.
    For example, 25 is a square number since, it can be written as 5*5.

    Within the MAIN function:
    . Declare a two-dimensional 40X25 integer array A and initialize
    it with random numbers between 1 and 100 inclusive.
    . Declare also a one-dimensional integer array B with a reasonable
    size to hold the elements of the array A which are square numbers.
    . Pass the arrays A and B to the FUNCTION1 as arguments and get
    the return value(the size of B, the number of square elements
    of A stored in B) from the FUNCTION1.
    . Pass the array B and the size of B(returned value from the
    FUNCTION1) to the FUNCTION2 as arguments.
    . Print the array B.
    . Print the array B without duplicates (i.e., repeated elements
    will be written only once.
    Within the FUNCTION1:
    . Read array A elements and compute and store the square elements
    of A into the array B.
    . Return the size of the array B(the number of the square elements
    stored in B) to the MAIN function.
    Within the FUNCTION2:
    . Sort the array B elements in ascending order.
    ···
   tümünü göster