永发信息网

大学vb考试 常用基本语句 要注释 最好有例子什么的、

答案:2  悬赏:0  手机版
解决时间 2021-02-28 11:29
  • 提问者网友:星軌
  • 2021-02-28 06:49
比如什么 for to
if then
还要 还要比如整除 求余数啊 mod 这类的、
我学的不太好 、 弄比较基本的就好
我觉得好的话还会加分的、
最佳答案
  • 五星知识达人网友:神鬼未生
  • 2021-02-28 08:14
dim i as integer
for i=1 to 10 step 2
msgbox "循环输出,这是第" & i/2+1 & "次",vbinformation
next i

dim score as integer
score=84
if score<60 then
msgbox "不及格",vbinformation
else if score<85 then
msgbox "良",vbinformation
else if score<100 then
msgbox "优秀",vbinformation
else
msgbox "满分",vbinformation
end if

整除:
dim c as integer
c=10/3 '结果为3,四舍五入
c=10/4 '结果为3,四舍五入
c=10\4 '结果为2,只取整数
c=10 mod 4 '结果为2,得到余数
全部回答
  • 1楼网友:举杯邀酒敬孤独
  • 2021-02-28 09:50
还是买书学习吧. 编程的博大精深吖...学好不容易~ select case 变量 case 值1 '指变量的值 [statement] case 值2 [statement] …… end select '循环语句 do while [conditions] '当满足conditions时,执行条件 statement exit do '跳出循环 statement loop '一般在语句中都有一个计数变量,例如i=i+1,不然会死循环 do statement exit do statement loop while conditions 这样至少执行一次循环 do untill conditions '直到conditions一直都循环
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯