积极答复者
用c#实现crc8校验 0x107 = x8 + x2 + x + 1,请高手帮忙解决,谢谢了

问题
答案
-
- 已建议为答案 Jason Dot WangModerator 2013年7月4日 8:07
- 已标记为答案 Jason Dot WangModerator 2013年7月9日 8:21
-
hello,
https://tako.codeplex.com/releases
秘訣無它,唯勤而已 http://www.dotblogs.com.tw/yc421206/
- 已标记为答案 Jason Dot WangModerator 2013年7月9日 8:21
全部回复
-
提示:
使用函数:Math.Power(原来数字,阶方)
If you think one reply solves your problem, please mark it as An Answer, if you think someone's reply helps you, please mark it as a Proposed Answer
Help by clicking:
Click here to donate your rice to the poor
Click to Donate
Click to feed Dogs & Cats
Found any spamming-senders? Please report at: Spam Report -
PassionalBoy;)
double x = 0.0; double result = 0.0; Console.WriteLine("输入x:"); x = Convert.ToDouble(Console.ReadLine()); result = Math.Pow(x, 8) + Math.Pow(x, 2) + x + 1; //自己处理result
If you think one reply solves your problem, please mark it as An Answer, if you think someone's reply helps you, please mark it as a Proposed Answer
Help by clicking:
Click here to donate your rice to the poor
Click to Donate
Click to feed Dogs & Cats
Found any spamming-senders? Please report at: Spam Report- 已建议为答案 Jason Dot WangModerator 2013年7月4日 8:07
-
- 已建议为答案 Jason Dot WangModerator 2013年7月4日 8:07
- 已标记为答案 Jason Dot WangModerator 2013年7月9日 8:21
-
hello,
https://tako.codeplex.com/releases
秘訣無它,唯勤而已 http://www.dotblogs.com.tw/yc421206/
- 已标记为答案 Jason Dot WangModerator 2013年7月9日 8:21
-
hi,
这是我写的开源专案,里面有原始码....
https://tako.codeplex.com/SourceControl/latest秘訣無它,唯勤而已 http://www.dotblogs.com.tw/yc421206/