#include<stdio.h> int fun(int a,int b) {static c=0; if(a>b) c=c+a; else c=c+b; return c; } 下见补充

日期:2011-02-25 22:40:57 人气:1

#include<stdio.h> int fun(int a,int b) {static c=0; if(a>b) c=c+a; else c=c+b; return c; } 下见补充

你的猜想是没错的,因为是静态变量C
    A+
热门评论