上传者: 38543293
|
上传时间: 2021-04-14 14:45:06
|
文件大小: 30KB
|
文件类型: PDF
代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SlopeOne{ public class Rating { public float Value { get; set; } public int Freq { get; set; } public float AverageValue { get { return Value / Freq; }