| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 344 人关注过本帖
标题:大神们,来帮帮我,双FOR循环怎么用啊
只看楼主 加入收藏
hitliubing
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2012-12-25
结帖率:100%
收藏
 问题点数:0 回复次数:4 
大神们,来帮帮我,双FOR循环怎么用啊
    For k = pnCount + 1 To lc_num    ’计算得到的多组数据(40多组数据,对应每组数据应该估算出一个对应的值)
    For Length1 = 1 To 8 Step 0.2    ’进行估算的循环
        
        xsheet.Cells(k + 1, 9) = Length1  
        xsheet.Cells(k + 1, 10) = Lenght1  * Ratio.Text  
        xsheet.Cells(k + 1, 11) = Depth.Text   
        xsheet.Cells(k + 1, 12) = hight.Text   
        xsheet.Cells(k + 1, 13) = Density  
        xsheet.Cells(k + 1, 14) = Fak.Text      
        xsheet.Cells(k + 1, 15) = Length1 ^ 2 * Ratio.Text  
        xsheet.Cells(k + 1, 16) = xsheet.Cells(k + 1, 4) + Density * Depth.Text * xsheet.Cells(k + 1, 15)
        xsheet.Cells(k + 1, 17) = Length1 ^ 3 * Ratio.Text ^ 2 / 6  
        xsheet.Cells(k + 1, 18) = Length1 ^ 3 * Ratio.Text / 6      
        xsheet.Cells(k + 1, 19) = xsheet.Cells(k + 1, 6) + hight.Text * xsheet.Cells(k + 1, 5)  
        xsheet.Cells(k + 1, 20) = xsheet.Cells(k + 1, 8) - hight.Text * xsheet.Cells(k + 1, 3)  
        xsheet.Cells(k + 1, 21) = xsheet.Cells(k + 1, 20) / xsheet.Cells(k + 1, 16)   
        xsheet.Cells(k + 1, 22) = xsheet.Cells(k + 1, 19) / xsheet.Cells(k + 1, 16)     
        xsheet.Cells(k + 1, 25) = xsheet.Cells(k + 1, 16) / xsheet.Cells(k + 1, 15)      
        xsheet.Cells(k + 1, 26) = xsheet.Cells(k + 1, 25) + Abs(xsheet.Cells(k + 1, 19)) / xsheet.Cells(k + 1, 17) + Abs(xsheet.Cells(k + 1, 20)) / xsheet.Cells(k + 1, 18) 'Pmax
     
        If (xsheet.Cells(k + 1, 16) > 0) And (xsheet.Cells(k + 1, 25) < Fak.Text) And (xsheet.Cells(k + 1, 26) < Fak.Text * 1.2) Then    ’跳出估算的条件(多条件),当满足条件时候跳出估算,进入下一组数据的估算
            Exit For
            End If
     Next
    Next
我现在遇到的问题是,对于一部分数据,估算值很理想,对于另一部分数据,就算内循环到底也跳不出来(实际上早已经满足条件,应该要跳出内循环的
   
2012-12-25 23:00
hitliubing
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2012-12-25
收藏
得分:0 
If k + 1, 26) < Fak.Text * 1.2Then    ’如果只设定一个控制条件,那么不会出现这个问题,         
   Exit For
            End If
     Next
    Next
是FOR循环中不能采用  if A  and B  and  吗???
2012-12-25 23:55
hitliubing
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2012-12-25
收藏
得分:0 
    If xsheet.Cells(k + 1, 25) < 200 And xsheet.Cells(k + 1, 26) < 240 Then   输入实际的数值的时候没问题,,为什么 (xsheet.Cells(k + 1, 25) < Fak.Text) And (xsheet.Cells(k + 1, 26) < Fak.Text * 1.2)  会出现问题呢
2012-12-26 00:01
hitliubing
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2012-12-25
收藏
得分:0 
是因为 IF 的判断语句中不能出现 输入值  .text吗???
2012-12-26 00:06
hitliubing
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2012-12-25
收藏
得分:0 
哈哈,自立根生啊,,Dim a As Double
   Dim b As Double
  a = Fak.Text
   b = 1.2 * a
 If (xsheet.Cells(k + 1, 16) > 0) And (xsheet.Cells(k + 1, 25) < a) And (xsheet.Cells(k + 1, 26) < b) Then

虽然不知道为什么,,但是可以哦了,,,
2012-12-26 00:11
快速回复:大神们,来帮帮我,双FOR循环怎么用啊
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.112450 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved