①右键单击QB.EXE,选择“属性”;
②选择最后一个选项卡“兼容性”;
③把“用兼容模式运行这个程序”前面的小对勾勾上,再选择一个稍早的Windows版本,“确定”即可!
1. 打印方阵输入:3,4
输出:****
****
****
cls
input n,m
for i=1 to n
for j=1 to m
print "*"
next j
next i
end
2. 三角(1)
输入:5
输出: *
**
***
****
*****
cls
input n
for i=1 to n
for j=1 to i
print "*"
next j
next i
end
3. 三角(2)
输入:5
输出:*
**
***
****
*****
cls
input n
for i=1 to n
print spc(n-i)
for j=1 to i
print "*"
next j
next i
end
在cmd模式下可运行,但由于屏幕显示模式的限制,许多语句会出错,甚至不运行。32位xp、win7存在同样的问题。完美的解决办法,只有安装虚拟机了。比如微软的Virtual PC。可以到“虚拟机之家”查询相关信息。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)