维生素A用量过大会引起中毒。
参考答案:对
《未成年人保护法》明确规定未成年人享有()。
A.生存权
B.发展权
C.受保护权
D.选举权
E.参与权
有以下程序 #include <iostream> using namespace std; int a; int fun(); int main() extern int a; int b; a=100; b=fun(); cout<<b<<endl; return 0; int fun() extern int a: return (10*a); 其程序运行后的输出结果是( )。
A.100 B.10C.1000 D.10000