0
I did not understand your question. You want to calculate the avarage of three numbers? int main () { int a = 1; int b = 2; int c = 3; int avg = (a + b + c) / 3; return 0; }
23rd Sep 2016, 12:11 PM
VinĂ­cius Dias
VinĂ­cius Dias - avatar