Skip to content

Latest commit

 

History

History
18 lines (18 loc) · 254 Bytes

Challenge.md

File metadata and controls

18 lines (18 loc) · 254 Bytes
@startuml
start
:wether = 天気情報;
if(wether == 0)then(true)
  :快晴です; 
  stop
elseif(wether == 1) then(true)
  :曇りです;
  stop
elseif(wether == 2) then(true)
  :雨です;
  stop
else (false)
  :不明です;
  stop
@enduml