forked from visheshrwl/DSA-Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTashuu.cpp
831 lines (753 loc) · 11.7 KB
/
Tashuu.cpp
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
#include <stdio.h>
#include <math.h>
#include <string.h>
/*int main()
{
printf("HELLO WORLD");
return 0;
}*/
/*int main()
{
int number;
printf("Enter an integer : ");
scanf("%d", &number);
printf("The number is : %d", number);
return 0;
}*/
/*int main()
{
float dc;
printf("Enter a decimal number : ");
scanf("%f" ,&dc);
printf("The decimal number is : %f", dc);
return 0;
}*/
/*int main()
{
char ch;
printf("Enter a character : ");
scanf("%c", &ch);
printf("The character is : %c", ch);
return 0;
}*/
/*int main()
{
int n,m;
float fr;
printf("Enter a number : ");
scanf("%d", &n);
printf("Enter another number : ");
scanf("%d" , &m);
fr=n/m;
printf("The fraction of n/m : %f", fr);
}*/
/*int main()
{
int n,m;
int sum,diff,mul,mod;
printf("Enter a number : ");
scanf("%d" , &n);
printf("Enter another number : ");
scanf("%d", &m);
sum=n+m;
diff=n-m;
mul=n*m;
mod=n/m;
printf("\nThe sum is : %d" , sum);
printf("\nThe difference is : %d" , diff);
printf("\nThe multiplication is : %d" , mul);
printf("\nThe divison is : %d" , mod);
return 0;
}*/
/*int main()
{
int r,ar;
printf("Enter the radius of the circle : ");
scanf("%d" , &r);
ar=3.14*r*r;
printf("The area of the circle is : %d" , ar);
return 0;
}*/
/*int main()
{
int p,t;
float r,si;
printf("Enter the principal amount : ");
scanf("%d" , &p);
printf("Enter the rate of interest : ");
scanf("%f" , &r);
printf("Enter the time period : ");
scanf("%d" , &t);
si=(p*r*t)/100;
printf("The simple interst is : %f" , si);
return 0;
}*/
/*int main()
{
int p,m,t;
float u,cu;
printf("Enter the principal amount : ");
scanf("%d" , &p);
printf("Enter the time period : ");
scanf("%d" , &t);
printf("Enter the number of times the interest is applied for : ");
scanf("%d" , &m);
printf("Enter the rate of interest : ");
scanf("%f" , &u);
cu=p*pow((1+u/m),(t*m));
printf("The compound interest is : %f" , cu);
return 0;
}*/
/*int main()
{
int bs;
float ta,da,gs;
printf("Enter the basic salary : ");
scanf("%d" , &bs);
ta=0.12*bs;
da=0.1*bs;
gs=bs+ta+da;
printf("The gross salary is : %f" , gs);
return 0;
}*/
/*int main()
{
char ch;
char cha;
printf("Enter a character : ");
scanf("%c" , &ch);
printf("Enter another character : ");
scanf("%c" , &cha);
}*/
/*int main()
{
int i;
char j;
float k;
printf("Enter a number : ");
scanf("%d" , &i);
printf("Enter a character : ");
scanf("%c" , &j);
printf("\nEnter a decimal number : ");
scanf("%f" , &k);
printf("The number is : %d" , i);
printf("\nThe charcter is : %c" , j);
printf("The decimal number is : %f" , k);
return 0;
}*/
/*int main()
{
char ch;
printf("Enter a character : ");
scanf("%c" , &ch);
printf("The character is : %c" , ch);
return 0;
}*/
/*int main()
{
int i,j;
char ch;
float k;
printf("Enter a number : ");
scanf("%d" , &i);
printf("Enter another number : ");
scanf("%d" , &j);
printf("Enter a decimal number : ");
scanf("%f" , &k);
printf("Enter a character : ");
scanf("%c" ,&ch);
printf("The number is : %d" , i);
printf("\nThe another number : %d" , j);
printf("\nThe decimal number : %f" , k);
printf("The character is : %c" , ch);
return 0;
}*/
/*int main()
{
int rows;
printf("Enter the number of rows : ");
scanf("%d" , &rows);
for(int i=1;i<=rows;i++)
{
for(int j=1;j<=i;j++)
{
printf("%d " , j);
}
printf("\n");
}
return 0;
}*/
/*int main()
{
int rows;
printf("Enter the number of rows : ");
scanf("%d" , &rows);
for(int i=5;i>=rows;i--)
{
for(int j=1;j<=i;j++)
{
printf("%d" , j);
}
printf("\n");
}
return 0;
}*/
/*int main()
{
int t;
printf("Enter the value of t : ");
scanf("%d" , &t);
for(int i=5;i>=1;i--)
{
for(int j=1;j<i;j++)
{
printf(" ");
}
for(int k=1;k<=t;k++)
{
printf("%d" , k);
}
printf("\n");
t++;
}
return 0;
}*/
/*int main()
{
int w;
printf("Enter the value of w : ");
scanf("%d" , &w);
for(int i=1;i<=5;i++)
{
for(int j=1;j<i;j++)
{
printf(" ");
}
for(int k=1;k<=w;k++)
{
printf("%d" , k);
}
printf("\n");
w--;
}
return 0;
}*/
/*int main()
{
int rows,t;
printf("Enter the number of rows : ");
scanf("%d" , &rows);
printf("Enter the value of t : ");
scanf("%d" , &t);
for(int i=1;i<=rows;i+=2)
{
for(int j=7;j>=t;j--)
{
printf(" ");
}
for(int k=1;k<=i;k++)
{
printf("%d" , k);
}
printf("\n");
t++;
}
return 0;
}*/
/*int main()
{
int arr[]={1,2,3,4,5};
int i;
for(i=0;i<5;i++)
{
printf("The elemet of the array is : %d\n" , arr[i]);
}
return 0;
}*/
/*int main()
{
int i,k,j,p,t=5;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d" , j);
}
printf("\n");
}
for(k=1;k<5;k++)
{
for(p=1;p<t;p++)
{
printf("%d" ,p);
}
t--;
printf("\n");
}
}*/
int main()
{
char ch[]="Tarshdeep Kaur";
printf("%s" , ch);
return 0;
}
/*int main()
{
char ch[100];
printf("Enter any string : ");
scanf("%s" , &ch);
printf("The string is : %s" , ch);
return 0;
}*/
/* int main()
{
char ch[15];
int i;
printf("Enter any 15 characters : ");
scanf("%s" , &ch);
for(i=0;i<15;i++)
{
printf("The character is : %c\n" ,ch[i]);
}
return 0;
}*/
/*int main()
{
char arr[100];
printf("Enter the elements of array : ");
scanf("%s" , &arr);
int i;
for(i=0;i<15;i++)
{
printf("The element of the array is : %c\n" , arr[i]);
}
return 0;
}*/
/*int main()
{
int arr[]={10,22,8,17,18,13,20};
int i;
for(i=0;i<7;i++)
{
printf("The birthdates are : %d\n" , arr[i]);
}
return 0;
}*/
/*int main()
{
int i,r;
int sum=0;
printf("Enter a number : ");
scanf("%d" , &i);
int n=i;
while(i!=0)
{
r=i%10;
sum=sum+(r*r*r);
i=i/10;
}
if(sum==n)
{
printf("%d is an armstrong number" , n);
}
else
{
printf("%d is not an armstrong number" , n);
}
return 0;
}*/
/*int main()
{
int i,r,rev=0;
printf("Enter a number : ");
scanf("%d" , &i);
int n=i;
while(i!=0)
{
r=i%10;
i=i/10;
rev=r+(rev*10);
}
if(rev==n)
printf("%d is a pallindrome number" , n);
else
printf("%d is not a pallindrome number" , n);
return 0;
}*/
/*int main()
{
char ch[100];
printf("Enter a string : ");
scanf("%s" , &ch);
char ch1=strlen(ch);
printf("%d is the length of %s" ,ch1,ch);
return 0;
}*/
/*int main()
{
char ch[100];
printf("Enter a string : ");
scanf("%s" , &ch);
strlwr(ch);
printf("%s is the lower case of entered word" ,ch);
return 0;
}*/
/*int main()
{
char ch[100];
printf("Enter a string : ");
scanf("%s" , &ch);
strupr(ch);
printf("%s is the upper case of the entered word" , ch);
return 0;
}*/
/*int main()
{
int A[] = {0,2,4,6,8,10};
int n=6,beg=0,end=n-1,result=-1,mid,x;
printf("\n What elt do you want to search? ");
scanf("%d",&x);
while(beg<=end)
{
mid=(beg+end)/2;
if(A[mid]<=x)
{
beg = mid+1;
result = mid;
}
else
end = mid-1;
}
if(A[result]==x)
printf("\nFound");
else
printf("\nNot found");
return 0;
}*/
/*int main()
{
int i,j,k,t;
char ch='*';
char ch1='$';
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%c" , ch);
}
printf("\n");
}
for(k=5;k>1;k--)
{
for(t=1;t<k;t++)
{
printf("%c" , ch1);
}
printf("\n");
}
return 0;
}*/
/*int main()
{
int i,r,sum=0;
printf("Enter a number : ");
scanf("%d" , &i);
int n=i;
while(i!=0)
{
r=i%10;
sum=sum+(r*r*r);
i=i/10;
}
if(sum==n)
printf("It is an armstrong number");
else
printf("It's not an armstrong number");
return 0;
}*/
/* int main()
{
int i,r,sum=0;
printf("Enter a number : ");
scanf("%d" , &i);
int n=i;
while(i!=0)
{
r=i%10;
sum=r+(sum*10);
i=i/10;
}
if(n==sum)
printf("It's a pallindrome");
else
printf("It's not a pallindrome");
return 0;
}*/
/*int main()
{
int i,j,k,t=1,n=1,d;
int h=1;
for(i=5;i>=1;i--)
{
for(j=1;j<i;j++)
{
printf(" ");
}
d=n;
for(k=1;k<=t;k++)
{
printf("%d" , d);
d--;
}
t++;
n++;
printf("\n");
}
return 0;
}*/
/* int main()
{
char ch[100];
printf("Enter a sentence : ");
scanf("%s" , &ch);
int ch1=strlen(ch);
printf("The length of the sentence is : %d" , ch1);
}*/
/*int main()
{
char ch[14];
int i;
printf("Enter a sentence : ");
scanf("%s" , &ch);
for(i=0;i<=14;i++)
{
printf("\nThe letter is : %c", ch[i]);
}
return 0;
}*/
/* int main()
{
int n,h,i,sum=0;
printf("The numbers to be encountered : ");
scanf("%d" , &n);
for(i=1;i<=n;i++)
{
printf("Enter a number : ");
scanf("%d" , &h);
if(h!=999)
{
sum=sum+h;
}
}
printf("The sum is : %d" , sum);
return 0;
}*/
/*int main()
{
int i,d, c=0;
for(i=1;i<=20;i++)
{
printf("Enter a number : ");
scanf("%d" , &d);
if(i%2==0)
{
c++;
}
}
printf("The count of even numbers is : %d" , c);
return 0;
}*/
/* int main()
{
int i,n,q,w,e,r,t;
printf("Enter 5 numbers : ");
scanf("%d %d %d %d %d", &q,&w,&e,&r,&r);
int avg=(q+w+e+r+t)/5;
printf("The average is : %d" , avg);
return 0;
}*/
/* int main()
{
int i,n,q,w,e,r,t;
printf("Enter 5 numbers : ");
scanf("%d %d %d %d %d", &q,&w,&e,&r,&t);
if(q>>w&&q>>e&&q>>r&&q>>t)
{
printf("The greatest number is : %d", q);
}
else if(w>>e&&w>>r&&w>>t)
{
printf("The greatest number is : %d", w);
}
else if(e>>r&&e>>t)
{
printf("The greatest number is : %d", e);
}
else if(r>>t)
{
printf("The greatest number is : %d", r);
}
else
printf("The greatest number is : %d", t);
return 0;
}*/
/* int main()
{
int sum=0,i,y,d=1;
for(i=1;i<=500;i++)
{
y=d;
while(y!=0)
{
int r=y%10;
sum=sum+(r*r*r);
y=y/10;
}
if(d==sum)
{
printf("\nIt's an armstrong number : %d" , d);
}
else
{
printf("\nIt's not an armstrong number : %d" , d);
}
d++;
sum=0;
}
return 0;
}*/
/* int main()
{
int i,sum=0,d=1,r,n;
for(i=1;i<=500;i++)
{
n=d;
while(n!=0)
{
r=n%10;
sum=sum+(r*r*r);
n=n/10;
}
if(d==sum)
{
printf("\nIt's a pallindrome number : %d" , d);
}
else
{
printf("\nIt's not a pallindrome number : %d" , d);
}
d++;
sum=0;
}
return 0;
}*/
/* int main()
{
int i,rev=0,y,d=1,r;
for(i=1;i<=500;i++)
{
y=d;
while(y!=0)
{
r=y%10;
rev=r+(rev*10);
y=y/10;
}
if(rev==d)
printf("\nIt's a pallindrome : %d" , d);
else
{
printf("\nIt's not a pallindrome : %d" , d);
}
rev=0;
d++;
}
return 0;
}*/
/* int main()
{
int i,j,t=4,k;
for(i=1;i<=9;i+=2)
{
for(k=1;k<=t;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("%d" , j);
}
printf("\n");
t--;
}
return 0;
}*/
/*int main()
{
int rows,coef=1,space,i,j;
printf("Enter number of rows : ");
scanf("%d", &rows);
for(i=0;i<rows;i++)
{
for(space=1;space<=rows-i;space++)
{
printf(" ");
}
for(j=0;j<=i;j++)
{
if(j==0||i==0)
coef=1;
else
coef=coef*(i-j+1)/j;
printf("%4d" ,coef);
}
printf("\n");
}
return 0;
}*/
/*int main()
{
double a,b;
printf("Enter the value of a : ");
scanf("%lf" , &a);
double pi=3.14;
double d=pi/180;
b=tan(a*d);
printf("The value of sin is %lf" , b);
return 0;
}*/
/*int main()
{
double a,b;
printf("Enter the value of a : ");
scanf("%lf" , &a);
b=sqrt(a);
printf("The value of b is : %lf" , b);
return 0;
}*/
/* int main()
{
float e,h;
float d,a,b,c;
printf("Enter the value of a : ");
scanf("%f" , &a);
printf("Enter the value of b : ");
scanf("%f" , &b);
printf("Enter the value of c : ");
scanf("%f" , &c);
d=(b*b)-4*a*c;
e=(-b+sqrt(d))/(2*a);
h=(-b-sqrt(d))/(2*a);
printf("%f\n" , e);
printf("%f" , h);
return 0;
}*/
/*int main()
{
printf("hello\n");
printf("How are u\n");
printf("How is everyone\n");
printf("How is\teveryone\n");
printf("How is \b eve\bryone");
return 0;
}*/