Skip to content

Instantly share code, notes, and snippets.

@maymax777
Last active February 21, 2022 12:29
Show Gist options
  • Save maymax777/e55b18281d0139bddce2107e0f7a721f to your computer and use it in GitHub Desktop.
Save maymax777/e55b18281d0139bddce2107e0f7a721f to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.19;
contract Century {
function get(int year) public pure returns (int) {
return (year - 1) / 100 + 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment