勤劳母鸡

文章
5
资源
0
加入时间
2年10月18天

IntelliJ IDEA部署tomcat时Edit Configuration无artifact选项

IntelliJ使用 ##使用IntelliJ IDEA配置web项目时,选择Edit Configration部署Tomcat的Deployment可能会出现以下情况: 导致新手部署过程中摸不着头脑。 解决办法: 1、打开Project Structure; 2、选择Aritfacts选项: 3、点击+号,选择Web Application:Explo...

计算随机十个数的和

1  Private Sub Command1_Click()ClsDim n As IntegerDim s As IntegerDim a(10) As Integern = 1While n a(n) = Int(Rnd * 1000)n = n + 1Wendn = 1While n Print a(n)n = n + 1Wend