如何在if循环中添加次数判定
答案:1 悬赏:0 手机版
解决时间 2021-03-29 12:22
- 提问者网友:送舟行
- 2021-03-29 01:54
如何在if循环中添加次数判定
最佳答案
- 五星知识达人网友:北城痞子
- 2021-03-29 03:00
循环在 if 外层,那么 计数器与 if 并列。例如:
count=0; while(){ count++; if () ....; }
若 循环在 if 内 层, 统计 循环次数:
count1=0; count2=0;
if () { 其它语句; while() { count1++;.....};其它语句; }
else { 其它语句; while() { count2++;.....};其它语句;};
count1 用于 if () 真,count2 用于 if () 假。
count=0; while(){ count++; if () ....; }
若 循环在 if 内 层, 统计 循环次数:
count1=0; count2=0;
if () { 其它语句; while() { count1++;.....};其它语句; }
else { 其它语句; while() { count2++;.....};其它语句;};
count1 用于 if () 真,count2 用于 if () 假。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯