-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
596 lines (444 loc) · 15.9 KB
/
Copy pathProgram.cs
File metadata and controls
596 lines (444 loc) · 15.9 KB
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
// ==================Hello World===========================//
// using System;
// class HeloWorld{
// static void Main(string[args]){
// Console.WriteLine("Hello, World!");
// }
// }
//======================= End ========================//
//======================= Swapping ========================//
// using System;
// class swapping
// {
// static void Main (string[]args)
// {
// int a = 5;
// int b = 10;
// Console.WriteLine($"Before swapping: a = {a}, b = {b}");
// int temp = a;
// a = b;
// b = temp;
// Console.WriteLine($"After swapping: a = {a}, b = {b}");
// }
// }
//======================= End ========================//
//======================= Fahrenheit ========================//
// using System;
// class Fahrenheit
// {
// static void Main (string[]args)
// {
// Console.Write("Enter temperature in Fahrenheit: ");
// double fahrenheit = Convert.ToDouble(Console.ReadLine());
// double celsius = (fahrenheit - 32) * 5 / 9;
// Console.WriteLine($"Temperature in Celsius: {celsius:F2}");
// }
// }
//======================= End ========================//
//======================= Find the area and perimeter of a rectangle (using user input) ========================//
// using System;
// class rectangle
// {
// static void Main (string[]args)
// {
//
// Console.Write("Enter the length of the rectangle: ");
// double length = Convert.ToDouble(Console.ReadLine());
// Console.Write("Enter the width of the rectangle: ");
// double width = Convert.ToDouble(Console.ReadLine());
//
// double area = length * width;
// double perimeter = 2 * (length + width);
//
// Console.WriteLine($"Area of the rectangle: {area}");
// Console.WriteLine($"Perimeter of the rectangle: {perimeter}");
// }
// }
//======================= End ========================//
//======================= simpleInterest ========================//
// using System;
// class simpleInterest
// {
// static void Main (string[]args)
// {
// Console.Write("Enter the principal amount (P): ");
// double principal = Convert.ToDouble(Console.ReadLine());
// Console.Write("Enter the rate of interest (R) in percentage: ");
// double rate = Convert.ToDouble(Console.ReadLine());
// Console.Write("Enter the time period (T) in years: ");
// double time = Convert.ToDouble(Console.ReadLine());
// double simpleInterest = (principal * rate * time) / 100;
// Console.WriteLine($"Simple Interest (SI) = {simpleInterest}");
// }
// }
//======================= End ========================//
//======================= compoundInterest ========================//
// using System;
// class compoundInterest
// {
// static void Main (string[]args)
// {
// Console.Write("Enter the principal amount (P): ");
// double principal = Convert.ToDouble(Console.ReadLine());
// Console.Write("Enter the annual interest rate (R) in percentage: ");
// double rate = Convert.ToDouble(Console.ReadLine());
// Console.Write("Enter the time period (T) in years: ");
// double time = Convert.ToDouble(Console.ReadLine());
// Console.Write("Enter the number of times interest is compounded per year (n): ");
// double n = Convert.ToDouble(Console.ReadLine());
// double compoundInterest = principal * Math.Pow((1 + (rate / (n * 100))), (n * time)) - principal;
// Console.WriteLine($"Compound Interest (CI) = {compoundInterest:F2}");
// }
// }
//======================= End ========================//
//======================= radiusCircle ========================//
// using System;
// class radiusCircle
// {
// static void Main (string[]args)
// {
// Console.Write("Enter the radius of the circle: ");
// double radius = Convert.ToDouble(Console.ReadLine());
// double area = Math.PI * Math.Pow(radius, 2);
// Console.WriteLine($"Area of the circle: {area:F2}");
// }
// }
//======================= End ========================//
//======================= positive ========================//
// using System;
// class positive
// {
// static void Main (string[]args)
// {
// Console.Write("Please enter an integer: ");
// // Try to parse the input as an integer
// if (int.TryParse(Console.ReadLine(), out int number))
// {
// // Check if the number is positive
// if (number > 0)
// {
// Console.WriteLine($"You entered a positive number: {number}");
// }
// else
// {
// Console.WriteLine("The number is not positive.");
// }
// }
// else
// {
// Console.WriteLine("Invalid input. Please enter a valid integer.");
// }
// }
// }
//======================= End ========================//
//======================= EvenOdd ========================//
// using System;
// class EvenOdd
// {
// static void Main (string[]args)
// {
// Console.WriteLine("Enter a number:");
// int number = int.Parse(Console.ReadLine());
// if (number % 2 == 0)
// {
// Console.WriteLine($"{number} is even.");
// }
// else
// {
// Console.WriteLine($"{number} is odd.");
// }
// }
// }
//======================= End ========================//
//======================= dayUsingArrary ========================//
// using System;
// class dayUsingArrary
// {
// static void Main (string[]args)
// {
// Console.WriteLine("Enter a sequence of digits (0-6) representing days of the week (0=Sunday, 1=Monday, ..., 6=Saturday):");
// string input = Console.ReadLine();
// // Array representing the days of the week
// string[] daysOfWeek = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
// Console.WriteLine("Days corresponding to your input:");
// foreach (char c in input)
// {
// if (char.IsDigit(c))
// {
// int index = (int)(c - '0'); // Convert char digit to integer
// if (index >= 0 && index < daysOfWeek.Length)
// {
// Console.WriteLine(daysOfWeek[index]);
// }
// else
// {
// Console.WriteLine($"Invalid input: {c} is not a valid day index.");
// }
// }
// else
// {
// Console.WriteLine($"Invalid character: {c} is not a digit.");
// }
// }
// }
// }
//======================= End ========================//
//======================= DayUsingElseif ========================//
// using System;
// class DayUsingElseif
// {
// static void Main (string[]args)
// {
// Console.WriteLine("Enter a number (0-6) to get the corresponding day of the week:");
// string input = Console.ReadLine();
// // Validate input
// if (input.Length == 1 && char.IsDigit(input[0]))
// {
// int dayIndex = int.Parse(input);
// if (dayIndex >= 0 && dayIndex <= 6)
// {
// // Print the corresponding day of the week
// if (dayIndex == 0)
// {
// Console.WriteLine("Sunday");
// }
// else if (dayIndex == 1)
// {
// Console.WriteLine("Monday");
// }
// else if (dayIndex == 2)
// {
// Console.WriteLine("Tuesday");
// }
// else if (dayIndex == 3)
// {
// Console.WriteLine("Wednesday");
// }
// else if (dayIndex == 4)
// {
// Console.WriteLine("Thursday");
// }
// else if (dayIndex == 5)
// {
// Console.WriteLine("Friday");
// }
// else if (dayIndex == 6)
// {
// Console.WriteLine("Saturday");
// }
// }
// else
// {
// Console.WriteLine("Please enter a number between 0 and 6.");
// }
// }
// else
// {
// Console.WriteLine("Invalid input. Please enter a single digit (0-6).");
// }
// }
// }
//======================= End ========================//
//======================= discriminant ========================//
// using System;
// class discriminant
// {
// static void Main (string[]args)
// {
// Console.WriteLine("Enter coefficients a, b, and c (for ax^2 + bx + c = 0):");
// Console.Write("a: ");
// double a = Convert.ToDouble(Console.ReadLine());
// Console.Write("b: ");
// double b = Convert.ToDouble(Console.ReadLine());
// Console.Write("c: ");
// double c = Convert.ToDouble(Console.ReadLine());
// // Calculate the discriminant
// double discriminant = b * b - 4 * a * c;
// if (discriminant > 0)
// {
// // Two real and distinct roots
// double root1 = (-b + Math.Sqrt(discriminant)) / (2 * a);
// double root2 = (-b - Math.Sqrt(discriminant)) / (2 * a);
// Console.WriteLine($"Roots are real and distinct: x1 = {root1}, x2 = {root2}");
// }
// }
// }
//======================= End ========================//
//======================= greater ========================//
// using System;
// class greater {
// static void Main (string[]args)
// {
// Console.Write("a: ");
// double a = Convert.ToDouble(Console.ReadLine());
// Console.Write("b: ");
// double b = Convert.ToDouble(Console.ReadLine());
// if (a>b){
// Console.WriteLine("a is greater");
// } else{
// Console.WriteLine("b is greater");
// }
// }
// }
//======================= End ========================//
//======================= Vowel ========================//
// using System;
// class Vowel
// {
// static void Main (string[]args)
// {
// Console.WriteLine("Enter a string:");
// string input = Console.ReadLine();
// foreach (char c in input.ToLower())
// {
// if (char.IsLetter(c))
// {
// if ("aeiou".Contains(c))
// {
// Console.WriteLine($"'{c}' is a vowel.");
// }
// else
// {
// Console.WriteLine($"'{c}' is a consonant.");
// }
// }
// else
// {
// Console.WriteLine($"'{c}' is not a letter.");
// }
// }
// }
// }
//======================= End ========================//
//======================= Eligibility ========================//
// using System;
// class Eligibility
// {
// static void Main(string[] args)
// {
// Console.Write("Enter Your age: ");
// int age = Convert.ToInt32(Console.ReadLine());
// Console.Write("Job Status:");
// String jobstatus = Console.ReadLine().ToLower();
// if (age >= 21 && jobstatus == "yes")
// {
// Console.WriteLine("Eligible for Marriage");
// }
// else if(age >= 21 && jobstatus == "no")
// {
// Console.WriteLine("Not Eligible for Marriage");
// }
// else{
// Console.WriteLine("Please enter Yes or No Only ");
// }
// }
// }
//======================= End ========================//
//======================= rectangletosquare ========================//
// using System;
// class rectangletosquare
// {
// static void Main()
// {
// Console.WriteLine("Enter the length of the rectangle:");
// double length = Convert.ToDouble(Console.ReadLine());
// Console.WriteLine("Enter the breadth of the rectangle:");
// double breadth = Convert.ToDouble(Console.ReadLine());
// if (length == breadth)
// {
// Console.WriteLine("The rectangle is a square.");
// }
// else
// {
// Console.WriteLine("The rectangle is not a square.");
// }
// }
// }
//======================= End ========================//
// using System;
// class Program {
// static void Main(string[] args)
// {
// // Console.Write("enter principal amount:");
// // double principal = Convert.ToDouble(Console.ReadLine());
// // Console.Write("enter principal rate:");
// // double rate = Convert.ToDouble(Console.ReadLine());
// // Console.Write("enter principal time:");
// // double time = Convert.ToDouble(Console.ReadLine());
// // Console.Write("Enter the number of times interest is compounded per year (n): ");
// // double n = Convert.ToDouble(Console.ReadLine());
// // double CI = (principal * Math.Pow((1+(rate/(n*100))), (n * time)))- principal;
// // Console.WriteLine($"the compound interest is :{CI:f2}");
// int n = 4, num = 1;
// for (int i = 1; i <= n; i++) {
// for (int j = 1; j <= n - i; j++) {
// Console.Write(" ");
// }
// for (int j = 1; j <= i; j++) {
// Console.Write(num + " ");
// num++;
// }
// Console.WriteLine();
// }
// }
// }
// using System;
// class Program {
// public static void Main(string[] args) {
// Console.WriteLine("Give the range of array:");
// int n = int.Parse(Console.ReadLine());
// int[] arr = new int[n];
// // Taking input
// for (int i = 0; i < n; i++) {
// Console.WriteLine($"Enter The Element {i+1}:");
// arr[i] = int.Parse(Console.ReadLine());
// }
// // Bubble Sort Algorithm
// for (int i = 0; i < n - 1; i++) {
// for (int j = 0; j < n - i - 1; j++) {
// if (arr[j] > arr[j + 1]) {
// int temp = arr[j];
// arr[j] = arr[j + 1];
// arr[j + 1] = temp;
// }
// }
// }
// // Output the sorted array
// Console.WriteLine("Array after sorting:");
// for (int k = 0; k < arr.Length; k++) {
// Console.Write(arr[k] + " ");
// }
// }
// }
using System;
class Program {
public static void Main(string[] args) {
Console.WriteLine("Give the range of array:");
int n = int.Parse(Console.ReadLine());
int[] arr = new int[n];
// Taking input
for (int i = 0; i < n; i++) {
Console.WriteLine($"Enter The Element {i + 1}:");
arr[i] = int.Parse(Console.ReadLine());
}
// Selection Sort Algorithm
for (int i = 0; i < n - 1; i++) {
int minIndex = i;
for (int j = i + 1; j < n; j++) {
if (arr[j] < arr[minIndex]) {
minIndex = j;
}
}
// Swap elements
int temp = arr[minIndex];
arr[minIndex] = arr[i];
arr[i] = temp;
}
// Output the sorted array
Console.WriteLine("Array after sorting:");
for (int k = 0; k < arr.Length; k++) {
Console.Write(arr[k] + " ");
}
}
}