#include<iostream> using namespace std; void function(float); void function(int); void function(float x) { std::cout << "Value of x is : " <<x<< std::endl; } ...
確定! 回上一頁