2 Star 3 Fork 4

GKing/Solidity8_perfect

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
S_10_IfElse.sol 439 Bytes
一键复制 编辑 原始数据 按行查看 历史
GKing 提交于 2022-11-04 17:55 . Control Structures 结构控制
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
// Control Structures 结构控制
contract IfElse {
function example (uint x) external pure returns (uint) {
if(x < 10) {
return 1;
} else if (x < 20) {
return 2;
} else {
return 3;
}
}
// 三元运算
function ternary(uint x) external pure returns (uint) {
return x < 10 ? 1 : 2;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jacky2code/solidity8_perfect.git
[email protected]:jacky2code/solidity8_perfect.git
jacky2code
solidity8_perfect
Solidity8_perfect
master

搜索帮助