作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个与此类似的循环。
int total1, total2;
for (total1 = fsize(myfile);;) {
total2 = fsize(myfile);
...
...
total1 = total2;
}
我想做的是将其转换为 while
循环,并在结束循环之前检查额外条件。
我想做这样的事情:
while((total1 = fsize(myfile)) && input = getch() != 'Q') {
total2 = fsize(myfile);
...
total1 = total2;
}
谢谢
最佳答案
for 循环的“初始化”部分 total1=fsize(myfile)
已成为 while 循环中测试的条件的一部分。这就是你的意图吗??
你确定你不想要这个吗...
total1 = fsize(myfile);
while((input = getch()) != 'Q') {
total2 = fsize(myfile);
...
total1 = total2;
}
关于c - for循环到while循环+附加条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3294833/
我有一个与此类似的循环。 int total1, total2; for (total1 = fsize(myfile);;) { total2 = fsize(myfile); ..
我已经开始了一个小项目来尝试学习一些新概念(希望是 C++ 或 Python),我只是希望在我的想法开始时得到一点帮助。 *这一切都与一个更大的梦幻篮球项目有关,但我必须从某个地方开始。 我想要 10
我有以下实体: @Entity public class User { @ManyToOne @JoinColumn(name = "group_code", referencedCo
我正在尝试使用 hibernate 条件向 Join 子句添加附加条件。事实上,有一些方法可以做到这一点: createCriteria(String associationPath, String
我是一名优秀的程序员,十分优秀!