求出所有能被7整除的两位数,写出算法程序

问题描述:

求出所有能被7整除的两位数,写出算法程序
用基本算法语句

For循环
VB语句:
for i=10 to 99
if i mod 7=0 then paint i
next