| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 864 人关注过本帖
标题:[求助]我的vb作业,作不下去拉,关于n!在计算器如何编啊?
只看楼主 加入收藏
yanxiaole
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-11-4
收藏
 问题点数:0 回复次数:1 
[求助]我的vb作业,作不下去拉,关于n!在计算器如何编啊?

我的VB啊,哭~~~

我的VB进制转换程序,有警告 1 函数“DecToBin”并非在所有代码路径上都返回值。当使用结果时,可能会在运行时发生空引用异常。 各位看看如何改进啊.还有就是阶乘不会编,那位大大,给个代码把
Function DecToBin(ByVal inputdata As Double) As String
Dim Newval As Double
Dim binout, Bintemp, Bintemp1 As String
Dim i As Integer

If InStr(1, CStr(inputdata), ".") Then
MsgBox("只有整数能够被转换", vbCritical)
GoTo errhandler
End If
binout = ""
Newval = inputdata
doagain:
Newval = (Newval / 2)
If InStr(1, CStr(Newval), ".") Then
binout = binout + "1"
Newval = Format(Newval, "#0")
Newval = (Newval - 1)
If Newval < 1 Then
GoTo doneit
End If
Else
binout = binout + "0"
If Newval < 1 Then
GoTo doneit
End If
End If
GoTo doagain
doneit:
Bintemp = ""
For i = Len(binout) To 1 Step -1
Bintemp1 = Mid(binout, i, 1)
Bintemp = Bintemp + Bintemp1
Next i
binout = Bintemp
DecToBin = binout
errhandler:
End Function

搜索更多相关主题的帖子: 计算器 作业 
2006-11-04 01:21
梓风
Rank: 2
等 级:新手上路
威 望:4
帖 子:181
专家分:0
注 册:2006-10-22
收藏
得分:0 
using System;

namespace ConsoleApplication2
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: 在此处添加代码以启动应用程序
//
int i=6;
int a;
a=i*(i-1);
for(i=i-1;i>1;i--)
{
a=a*(i-1);
}
Console.WriteLine(a.ToString());
Console.ReadLine();
Console.WriteLine();
}
}
}
看看这个C#的例子吧

等待相逢
2006-11-04 09:07
快速回复:[求助]我的vb作业,作不下去拉,关于n!在计算器如何编啊?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016354 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved