-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4. operators.dart
220 lines (175 loc) · 4.02 KB
/
4. operators.dart
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
/// Operators in Dart
/// 1. Arithmetic Operators
/// 2. Relational Operators
/// 3. Logical Operators
/// 4. Bitwise Operators
/// 5. Assignment Operators
/// 6. Conditional Operators
// ignore_for_file: dead_code
void main(List<String> args) {
/// Arithmetic Operators
/// +, -, *, /, %, ++, --
// Initializing variables
int a = 10;
int b = 3;
// Adding two numbers
int c = a + b;
print('a+b = $c'); // a+b = 13
// print('a+b = ' + c.toString()); // a+b = 13
// Subtracting two numbers
c = a - b;
print('a-b= $c');
// Multiplying two numbers
c = a * b;
print('a*b= $c');
// Dividing two numbers
c = a ~/ b;
print('a~/b= $c');
// Modulus operator
c = a % b;
print('a%b= $c');
/// Relational Operators
/// ==, !=, >, <, >=, <=
// Initializing variables
var x = 10;
var y = 3;
// Checking if x is equal to y
if (x == y) {
print('x is equal to y');
} else {
print('x is not equal to y');
}
// Checking if x is not equal to y
if (x != y) {
print('x is not equal to y');
} else {
print('x is equal to y');
}
// Checking if x is greater than y
if (x > y) {
print('x is greater than y');
} else {
print('x is not greater than y');
}
// Checking if x is less than y
if (x < y) {
print('x is less than y');
} else {
print('x is not less than y');
}
// Checking if x is greater than or equal to y
if (x >= y) {
print('x is greater than or equal to y');
} else {
print('x is neither greater than nor equal to y');
}
// Checking if x is less than or equal to y
if (x <= y) {
print('x is less than or equal to y');
} else {
print('x is neither less than nor equal to y');
}
/// Logical Operators
/// &&, ||, !
// Initializing variables
bool p = true;
bool q = false;
// Checking if p and q are true
if (p && q) {
print('p and q are true');
} else {
print('p and q are not true');
}
// Checking if p or q is true
if (p || q) {
print('p or q is true');
} else {
print('p or q is not true');
}
// Checking if p is not true
if (!p) {
print('p is not true');
} else {
print('p is true');
}
/// Bitwise Operators
/// &, |, ^, ~, <<, >>
// Initializing variables
var m = 2; // 10
var n = 1; // 01
// Bitwise AND
var o = m & n;
print('m & n = $o'); // 00
// Bitwise OR
o = m | n;
print('m | n = $o'); // 11
// Bitwise XOR
o = m ^ n;
print('m ^ n = $o'); // 11
// Bitwise NOT
o = ~n;
print('~n = $o'); // -2
// Bitwise left shift
o = m << n;
print('m << n = $o'); // 100
// Bitwise right shift
o = m >> n;
print('m >> n = $o'); // 1
/// Assignment Operators
/// =, +=, -=, *=, /=, %=
// Initializing variables
var r = 2.0;
var s = 1.0;
// Assigning value of s to r
r = s;
print('r = $r');
// Assigning value of r + s to r
r += s; // r = r + s
print('r += s = $r');
// Assigning value of r - s to r
r -= s; // r = r - s
print('r -= s = $r');
// Assigning value of r * s to r
r *= s; // r = r * s
print('r *= s = $r');
// Assigning value of r / s to r
r /= s; // r = r / s
print('r /= s = $r');
// Assigning value of r % s to r
r %= s; // r = r % s
print('r %= s = $r');
/// Conditional Operators
/// ?:, ??, ??=
/// ?: is the ternary operator
/// ?? is the null-aware operator
/// ??= is the null-aware assignment operator
// Initializing variables
var t = 2;
var u = 1;
// Using conditional operator
var v = t > u ? t : u; // if t > u is true, then v = t, else v = u
print('v = $v');
// Alternative if-else statement
// if (t > u) {
// v = t;
// } else {
// v = u;
// }
// Initializing variables
var w;
var xx = 1;
// Using null-aware operator
var yy = w ?? xx;
print('yy = $yy');
// Example
// var name = null;
// var fullName = name ?? 'Guest User';
// Initializing variables
var z;
var aa = 1;
// Using null-aware assignment operator
z ??= aa;
print('z = $z');
// Example
// var name ??= 'Guest User';
}