いくつかの一般的な言語におけるif条件文のフォーマット


いくつかの一般的な言語におけるif条件文のフォーマット
C/C++
if(    1)
	   1;
else  if(    2)
	   2;
else  if(    3)
	   3;
...
else
	   n;

Java
if(   1){
	   1;
}
else if(   2){
	   2;
}
else if(   3){
	   3;
}
...
else{
	   n;
}

Python
if    1:
	   1
elif    3:
	   2
elif    2:
	   3
...
else:
	   n

VHDL
if    then
	    ;
elsif    then
	    ;
elsif    then
	    ;else
	    ;
end if;

MySQL
if(   123)
#     1  , if       2  ,       3  

アセンブリ言語の実装
beq rs,rt,L1
	if (rs == rt)        L1;
bne rs, rt, L1
	if (rs != rt)        L1;
j L1
	         L1

  :
		bne reg1,reg2,Else
		  1
		j Exit
Else:	  2
Exit:	...