Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as text by Soeren ( 17 years ago )
public static float durchschnittL(node n, int sum, int anzahl){
if(n == null)return (float)sum/anzahl;
sum += n.value;
return durchschnittL(n.next,sum,anzahl+1);
}
Revise this Paste