输入一串数据,通过代码实现求正偶数和。 #include<stdio.h> int judge1(int x)//判断是否为正数,是则输出,否则返还0// { if(x>0)return x; else return 0;