-
Notifications
You must be signed in to change notification settings - Fork 0
/
ControlStructures.sol
35 lines (28 loc) · 972 Bytes
/
ControlStructures.sol
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
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
contract ControlStructures {
function fizzBuzz(uint _number) public pure returns (string memory) {
if (_number % 3 == 0 && _number % 5 == 0) { return "FizzBuzz";
} else if (_number % 3 == 0) { return "Fizz";
} else if (_number % 5 == 0) { return "Buzz";
} else { return "Splat";
}
}
error AfterHours(uint _time);
function doNotDisturb(uint _time) external pure returns (string memory) {
assert(_time < 2400);
if (_time > 2200 || _time < 800) {
revert AfterHours(_time);
}
if (_time >= 1200 && _time <= 1299) {
revert("At lunch!");
}
if (_time >= 800 && _time <= 1199) {
return "Morning!";
}
if (_time >= 1300 && _time <= 1799) {
return "Afternoon!";
}
return "Evening!";
}
}