-
Notifications
You must be signed in to change notification settings - Fork 0
/
tn-hesabi.c
81 lines (49 loc) · 1.12 KB
/
tn-hesabi.c
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include<stdio.h>
#include<stdlib.h>
// Bekir Can Yuva
// 163301015
int ToplamIslemi(int *toplam2){
int n;
*toplam2=0; // 1
printf("Sayi giriniz>> \n");
scanf("%d",&n);
return *toplam2 += (n*(n+1))/2; // 4
} // T(N) = 5
int Dongu(int *toplam){
int i,n;
*toplam = 0; // 1
printf("Sayi giriniz>> \n");
scanf("%d",&n);
for(i=1; i<=n ; i++){ // 2N
*toplam += i; // N
}
// T(N) = 3N + 1
return 0;
}
/*
Döngü ile T(n) = 3n+1
Formül ile T(n) = 5
N = 1 için Döngü , Formülden daha kazançlýdýr. Ancak N arttýkça özellikle yüksek basamaklý sayýlarda Formül her zaman için daha kazançlýdýr.
*/
int main(){
int toplam,toplam2=0;
int islem;
printf(" *** 1 den N e kadar olan sayilarin toplami *** \n");
printf("1- Formul ile \n");
printf("2- Dongu ile \n");
printf("Islem seciniz : \n",islem);
scanf("%d",&islem);
switch(islem){
case 1:
ToplamIslemi(&toplam2);
printf("Toplam : %d",toplam2);
break;
case 2:
Dongu(&toplam);
printf("Toplam : %d",toplam);
break;
default:
printf("Islem gecersiz!");
}
return 0;
}