以下正确的函数定义形式是?
选项A:double fun(int x,int y)
选项B:double fun(int x;int y)
选项C:double fun(int x,int y;)
选项D:double fun(int x,y);
正确答案:选项A