if(if 함수가 발동 되는 조건){
if 내용
}
else{ if 함수가 발동이 안되면
else 내용
}
string private result = "";
function isIt5(uint256 _number) public returns(string memory){
if(_number == 5){
result = "Yes, it is 5";
return result;
}
else{
result = "No, it is not 5";
return result;
}
}
string private result = "";
function isIt5(uint256 _number) public returns(string memory){
if(_number == 5){
result = "Yes, it is 5";
return result;
}
result = "No, it is not 5";
return result;
}
if(if가 발동 되는 조건){
if 내용
}
else if(else if가 발동 되는 조건){
else if 내용
}
...
else{ if, else if 가 발동이 안되면
else 내용
}
string private result = "";
function isIt5or3or1(uint256 _number) public returns(string memory){
if(_number == 5){
result = "Yes, it is 5";
return result;
}
else if(_number == 3){
result = "Yes, it is 3";
return result;
}
else if(_number == 1){
result = "Yes, it is 1";
return result;
}
else{
result = "No, it is not 5, 3 or 1";
return result;
}
솔리디티 강좌 24강 반복문3 - linear search (0) | 2021.09.23 |
---|---|
솔리디티 강좌 22강 loop (for,while,do-while) (0) | 2021.09.22 |
솔리디티 강좌 20강 struct (구조체) (0) | 2021.09.20 |
솔리디티 강좌 19강 Mapping 과 Array 주의할 점 (0) | 2021.09.19 |
솔리디티 강좌 18강 Array 배열 (0) | 2021.09.18 |