设int x;,则以下语句中错误的输入是()
scanf (″%d″,x);
scanf (″%d″,&x);
scanf (″%o″,&x);
scanf (″%x″,&x);
格式输入函数scanf()的格式为scanf(格式控制字符串,输入项首地址表),故scanf (″%d″,x);中x之前应加“&”符号。