-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIlkScriptim.cs
40 lines (35 loc) · 1.27 KB
/
IlkScriptim.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NewBehaviourScript : MonoBehaviour
{
void BolenleriBul(int ilkSayi, int ikinciSayi)
{
List<int> siraliSayilar = new List<int>();
List<int> ikiyeBolunen = new List<int>();
List<int> uceBolunen = new List<int>();
List<int> dordeBolunen = new List<int>();
List<int> beseBolunen = new List<int>();
for (int i = ilkSayi; i <= ikinciSayi; i++)
{
siraliSayilar.Add(i);
if (i % 2 == 0)
ikiyeBolunen.Add(i);
if (i % 3 == 0)
uceBolunen.Add(i);
if (i % 4 == 0)
dordeBolunen.Add(i);
if (i % 5 == 0)
beseBolunen.Add(i);
}
print("Sıralı Sayılar: " + string.Join("-", siraliSayilar));
print("İkiye Bölünen Sayılar: " + string.Join("-", ikiyeBolunen));
print("Üçe Bölünen Sayılar: " + string.Join("-", uceBolunen));
print("Dörde Bölünen Sayılar: " + string.Join("-", dordeBolunen));
print("Beşe Bölünen Sayılar: " + string.Join("-", beseBolunen));
}
private void Start()
{
BolenleriBul(6, 77);
}
}