-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssignmentLab.c
162 lines (124 loc) · 2.83 KB
/
AssignmentLab.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
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
/*
#include <stdio.h>
void main()
{
int a,b;
printf("Enter a Value for a: ");
scanf("%d", &a);
printf("Enter a Value for b: ");
scanf("%d", &b);
printf("The value of 'a' is %d \n", a);
printf("The value of 'b' is %d \n", b);
a = a + b;
b = a - b;
a = a - b;
printf("Now the swapped values of a & b are %d & %d respectively", a, b);
}
*/
/*
#include <stdio.h>
void main()
{
float P,T,R,PTR,SI;
printf("Enter the priciple amount: ");
scanf("%f", &P);
printf("Enter the Interest Rate: ");
scanf("%f", &R);
printf("Enter the Time Period in Years: ");
scanf("%f", &T);
PTR = P * T * R;
SI = PTR / 100;
printf("The Simple Interest amount is %f", SI);
}
*/
/*
#include <stdio.h>
void main()
{
int n,i,fact = 1;
printf("Enter a value: ");
scanf("%d", &n);
for(i = 1; i <= n; i++)
{
fact *= i;
}
printf("The factorial for the given value is %d", fact);
}
*/
/*
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
void main()
{
float a, b, c, D, R1, R2, Real, Img;
printf("Enter a value for the coefficient of a: ");
scanf("%f", &a);
printf("Enter a value for the coefficient of b: ");
scanf("%f", &b);
printf("Enter a value for the coefficient of c: ");
scanf("%f", &c);
D = b*b - 4*a*c;
if (D == 0)
{
printf("The solutions of the given qudratic eqautions is real anf equal\n");
R1 = R2 = -b / 2*a;
printf("The roots of the equation are %f and %f ",R1,R2);
}
else if (D > 0)
{
printf("The solutions of the given quadratic equation is real and unique\n");
R1 = (-b + sqrt(D)) / 2*a;
R2 = (-b - sqrt(D)) / 2*a;
printf("The roots of the quadratic equations are resectively %f & %f",R1,R2);
}
else
{
printf("The solutins of the given quadratic equation is imaginary\n");
Real = -b / (2*a);
Img = sqrt(-D)/ (2*a);
printf("The roots of the given quadratic equation are %f+%fi & %f-%fi respectively",Real,Img,Real,Img);
}
}
*/
/*
#include <stdio.h>
void main()
{
int a, rem, og, rev = 0;
printf("\nEnter a number to check if it is a palindrome or not: ");
scanf("%d", &a);
og = a;
while (a != 0)
{
rem = a % 10;
rev = rev * 10 + rem;
a /= 10;
}
if ( og == rev)
{
printf("The given number %d is a palindrome\n", og);
}
else
{
printf("The given number %d is not a palindrome\n", og);
}
}
*/
/*
#include <stdio.h>
void main()
{
int a,n,i,og;
printf("Enter the number: ");
scanf("%d", &a);
printf("Choose a power to raise the number with: ");
scanf("%d", &n);
og = a;
for (i = 1; i < n; i++)
{
a *= og;
}
printf("The given number %d raised to the power of %d is %d",og,n,a);
}
*/