调用声明为int result(int a,int b)的函数时,正确的方法是()
result(1,2)
result(1)
result(0.1,0.3)
result(1,2,3)
函数的使用应与声明中类型,个数保持一致。故只有A符合。