定义变量如下:
int i=18; 
long L=5; 
float f=9.8f; 
double d=1.2; 
String s="123";
以下赋值语句不正确的是?
A L=f+i;
B f=L+i;
C s=s+i;
D s=s+i+f+d;