以下能正确定义变量a、b和c并为其赋值的语句是


以下能正确定义变量a、b和c并为其赋值的语句是

A.int a=5,b=5,c=5;

B.int a=5;b=5;c=5;

C.int a,b,c=5;

D.a=5,b=5,c=5;

正确答案:int a=5,b=5,c=5;