编程java实现给出三个整数,求平均数

如题所述

第1个回答  2016-09-21

本回答被提问者采纳
第2个回答  2016-09-21
public int getSum(int a,int b,int c){
return (a+b+c)/3;

}本回答被网友采纳
相似回答