如何用VB实现直线圆弧连接,以及圆弧和圆弧连接

来源:百度知道 编辑:UC知道 时间:2024/05/18 07:26:26
用VB的画图表示出来,有源程序的拿出来分享一下啊,
还有那位高手帮帮忙啊,给我一点提示

import java.util.Random;
public class Wb3
{
public static void main(String[] args)
{
int[] num = new int[100];
Random rand = new Random();

for(int i=0; i< 100; i++)
{
num[i]=rand.nextInt(10);
}
for(int i=0; i<100; i++)
{
System.out.print(num[i]+" ");

if(((i+1)%10)==0)
{
System.out.print("\n");
}
}
}
}