2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-17 09:25:32 +00:00
cheat.sheets/sheets/_cpp/if

21 lines
244 B
Plaintext
Raw Normal View History

int main() {
// Basic
2017-07-18 04:35:42 +00:00
if(x > 0) {
return x;
2017-07-18 04:35:42 +00:00
}
else {
return -x;
2017-07-18 04:35:42 +00:00
}
// if else
if(x > 0) {
return x;
2017-07-18 04:35:42 +00:00
}
else if(x == 0) {
return 420;
2017-07-18 04:35:42 +00:00
}
else {
2017-07-18 04:35:42 +00:00
return -x;
}
}