有以下程序
#include
int i = 0;
void fun()
{
{
static int i = 1;
std::cout
A1,2,1,2,
B1,2,2,3,
C2,0,3,0,
D1,0,2,0,
相关试题
-
有以下程序 #include int i = 0; void fun() { { static int i = 1; std::cout
-
下面程序的输出结果是( ) #include using namespace std; void fun(int x,int y,int z) { z=x*x+y*y; } int mai
-
有以下程序 #include int fun() {static int x=1; x*=2; return x; } void main() {int i,s=1; for (i=1;i
-
下面程序的输出结果是( ) #include using namespace std; int fun(int a,int b) { return (++a*b++); } int m
-
有以下程序 #include void fun(int *s) { static int j=0; do { s[j]+=s[j+1]; }while(++j