as的用法,如“as if”.“as though”之类的,要详细,最好有例句_百度知...
发布网友
发布时间:2024-10-24 01:24
我来回答
共2个回答
热心网友
时间:2024-10-27 20:24
as
though
是书面语比as
if正式,意思上没有区别;
even
though
和even
if
同理。
so/as
far
as;as/so
long
as
如果是用于表示“只要”时,用法上没有区别。只是它们各自还有各自的用法:so/as
far
as
I
know
据我所知
;A
is
as
long
as
B.A和B一样长。
热心网友
时间:2024-10-27 20:22
给你举一个例子吧
for(1;2;3)
{
1;
2;
continue;
3;
4;
}
如果程序执行了continue那么就不会执行,3,4语句,直接去执行for循环中的3语句。
而且continue不能达到你的要求,你可以用break;你原来的程序可以这么写:
for(j=0;j<6;j++)
{
if(j%2)
n++;
break;
}