【简答题】关于preg_match()函数,下面程序的输出结果是( )。
$str='http://www.123.com/a.png';
$pat='/.(gif|jpg|png)$/';
preg_match($pat, $str, $arr);
echo $arr[1];A. a.png B. a C. .png D. png
【单选题】下面程序的输出结果是( )。 #include <iostream> using namespace std; int fun (int, int); //fun ( ) 函数的说明 void main( ) { int a =48,b =36,c; c = fun(a,B) ; cout<<c; } int fun(int u,int v) { int w; while (v) {w=u%v;u...