欢迎访问服务器技术网-www.fuwuqijishu.com

这个程序怎么了?

程序设计 fuwuqijishu 2年前 (2022-10-01) 15次浏览 0个评论 扫描二维码

关于Private Sub Form_Load()
Dim n, nn, m As Integer ‘n为所求数,m为因子,nn为因子之和
nn = 0
lable1.Caption = “1”
For n = 2 To 1000 ‘n为1是特殊情况
For m = 1 To n – 1
If n \ m Then
nn = nn + m
End If
Next m
If n = nn Then
lable1.Caption = lable1.Caption & ” ” & n
End If
Next n
End Sub

目的:
如果一个数等于他的所有的因子之和,这个数就称为“完数”,编程找出1000以内的所有完数

运行时被提示lable1.Caption = “1”有问题
去处后可以运行,但lable没有显示

肯请告知错误原因和解决办法的问题

是label1吧

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2807.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900