⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 c51循环语句.htm

📁 单片机教程 用c语言实现编程 可以大大缩短我们的开发周期
💻 HTM
📖 第 1 页 / 共 3 页
字号:
                  过循环体中没有执行的语句,跳转到下一次循环周期。语法为:</P>
                  <P>continue;</P>
                  <P>continue 同时也是一个无条件跳转语句,但功能和前面说到的 break 语句有所不一样, continue 
                  &nbsp;执行后不是跳出循环,而是跳到循环的开始并执行下一次的循环。在上面的例子 中的循环体加入 if 
                  &nbsp;(I==5) &nbsp;continue;看看什么结果?</P>
                  <P>return &nbsp;语句</P>
                  <P>return 语句是返回语句,不属于循环语句,是要学习的最后一个语句所以一并写下了。 
                  返回语句是用于结束函数的执行,返回到调用函数时的位置。语法有二种:</P>
                  <P>return &nbsp;(表达式);</P>
                  <P>return; 语法中因带有表达式,返回时先计算表达式,再返回表达式的值。不带表达式则返回的</P>
                  <P>值不确定。</P>
                  <P>下面是一个同样是计算 1-10 的累加,所不一样是的用了函数的方式。</P>
                  <P>#include &nbsp;&lt;AT89X51.H&gt;</P>
                  <P>#include &nbsp;&lt;stdio.h&gt;</P>
                  <P>int &nbsp;Count(void); &nbsp;//声明函数</P>
                  <P>void &nbsp;main(void)</P>
                  <P>{</P>
                  <P>unsigned &nbsp;int &nbsp;temp;</P></DIV>
                  <P align=left><BR style="PAGE-BREAK-BEFORE: auto" 
                  clear=all>&nbsp;</P>
                  <DIV class=Section57>
                  <P>SCON &nbsp;= &nbsp;0x50; &nbsp;//串行口方式 1,允许接收 TMOD &nbsp;= 
                  &nbsp;0x20; &nbsp;//定时器 1 定时方式 2</P>
                  <P>TCON &nbsp;= &nbsp;0x40; &nbsp;//设定时器 1 开始计数</P>
                  <P>TH1 &nbsp;= &nbsp;0xE8; &nbsp;//11.0592MHz &nbsp;1200 波特率 
                  TL1 &nbsp;= &nbsp;0xE8;</P>
                  <P>TI &nbsp;= &nbsp;1;</P>
                  <P>TR1 &nbsp;= &nbsp;1; &nbsp;//启动定时器</P>
                  <P>temp &nbsp;= &nbsp;Count();</P>
                  <P>printf &nbsp;("1-10 &nbsp;SUM=%d\n",temp); &nbsp;//显示</P>
                  <P>while(1);</P>
                  <P>}</P>
                  <P>int &nbsp;Count(void)</P>
                  <P>{</P>
                  <P>unsigned &nbsp;int &nbsp;I, &nbsp;SUM;</P>
                  <P>for &nbsp;(I=1; &nbsp;I&lt;=10; &nbsp;I++)</P>
                  <P>{</P>
                  <P>SUM &nbsp;= &nbsp;I &nbsp;+ &nbsp;SUM; &nbsp;//累加</P>
                  <P>}</P>
                  <P>return &nbsp;(SUM);</P>
                  <P>}</P></DIV><BR><BR><!--推荐--></DIV></TD></TR></TBODY></TABLE></TD></TR>
        <TR>
          <TD class=box_common_title align=middle colSpan=2><A 
            href="http://www.5jia1.com/league/blog/show_comm.php?bid=361539">&lt;&lt; 
            上一篇:第十二课 C51开关分支语句</A> | <A 
            href="http://www.5jia1.com/league/blog/show_comm.php?bid=361543">下一篇:第十四课 
            C51函数 &gt;&gt; </A></TD></TR>
        <TR class=box_common_content>
          <TD colSpan=2>
            <TABLE width="100%">
              <TBODY>
              <TR>
                <TD align=left><IMG title=人气 src="13.files/icon_click.gif" 
                  align=absMiddle border=0>人气(120)&nbsp; <IMG title=评论 
                  src="13.files/icon_btn_comment.gif" align=absMiddle 
                  border=0>&nbsp;<A 
                  href="http://www.5jia1.com/league/blog/show_comm.php?bid=361540#reply">评论(0)</A> 
                  <IMG title=转贴 src="13.files/icon_repost.gif" align=absMiddle 
                  border=0>&nbsp;转贴<A 
                  onclick=get_refer_list(514465,361540,400,505) 
                  href="javascript:void(0)">(<SPAN id=refer_361540>0</SPAN>)</A> 
                  <IMG title=收藏 src="13.files/icon_btn_favorite.gif" 
                  align=absMiddle border=0>&nbsp;<A onclick=alert_login(); 
                  href="javascript:void(0);"> 收藏</A></TD>
                <TD align=right></TD></TR></TBODY></TABLE></TD></TR>
        <TR class=box_common_content>
          <TD align=right colSpan=2><INPUT 
            onclick="javascript:alert('对不亲,请您登录!');" type=image 
            src="13.files/button_tuijian.gif"> 
</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE><BR>
<TABLE class=box_spec cellSpacing=1 cellPadding=5 width="98%" align=center 
border=0>
  <TBODY>
  <TR>
    <TD><STRONG>发表评论</STRONG><A name=reply></A></TD>
    <TD align=middle>&nbsp;</TD></TR>
  <TR class=box_spec_content>
    <TD align=middle>&nbsp;</TD>
    <TD>
      <TABLE cellSpacing=0 cellPadding=0 border=0>
        <FORM id=comment name=comment onsubmit="return formsubmit();" 
        action=/league/blog/add_comm.php method=post target=hidden_frame><INPUT 
        id=bid type=hidden value=361540 name=bid> <INPUT id=sid type=hidden 
        name=sid> 
        <TBODY>
        <TR>
          <TD><SPAN 
            class=font_common_title>发表评论</SPAN>(最多可填600个字符,300个汉字)&nbsp;<SPAN 
            class=color_red id=left_num>0</SPAN>/600</TD>
          <TD>&nbsp;</TD></TR>
        <TR>
          <TD><TEXTAREA class=input_box01 onpropertychange="textCounter(comment.content, 600)" name=content rows=10 cols=70></TEXTAREA> 
          </TD>
          <TD vAlign=top>
            <DIV><LABEL>插入表情:</LABEL> 
            <TABLE 
            style="BORDER-RIGHT: #96ae72 1px solid; BORDER-TOP: #96ae72 1px solid; BACKGROUND: #edf8dd; BORDER-LEFT: #96ae72 1px solid; BORDER-BOTTOM: #96ae72 1px solid">
              <TBODY>
              <TR>
                <TD><A onclick="insertSmile('[[::keai::]]');" 
                  href="javascript:void(0)"><IMG title=可爱 height=32 
                  src="13.files/1.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::ciya::]]');" 
                  href="javascript:void(0)"><IMG title=呲牙 height=32 
                  src="13.files/2.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::guilian::]]');" 
                  href="javascript:void(0)"><IMG title=鬼脸 height=32 
                  src="13.files/3.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::deyi::]]');" 
                  href="javascript:void(0)"><IMG title=得意 height=32 
                  src="13.files/4.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::xihuan::]]');" 
                  href="javascript:void(0)"><IMG title=喜欢 height=32 
                  src="13.files/5.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::jie::]]');" 
                  href="javascript:void(0)"><IMG title=饥饿 height=32 
                  src="13.files/6.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::chijing::]]');" 
                  href="javascript:void(0)"><IMG title=吃惊 height=32 
                  src="13.files/7.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::sikao::]]');" 
                  href="javascript:void(0)"><IMG title=思考 height=32 
                  src="13.files/8.gif" width=32 border=0></A></TD></TR>
              <TR>
                <TD><A onclick="insertSmile('[[::haixui::]]');" 
                  href="javascript:void(0)"><IMG title=害羞 height=32 
                  src="13.files/9.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::tongkuliu::]]');" 
                  href="javascript:void(0)"><IMG title=痛哭 height=32 
                  src="13.files/10.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::bizui::]]');" 
                  href="javascript:void(0)"><IMG title=闭嘴 height=32 
                  src="13.files/11.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::kubi::]]');" 
                  href="javascript:void(0)"><IMG title=酷酷 height=32 
                  src="13.files/12.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::liuhan::]]');" 
                  href="javascript:void(0)"><IMG title=流汗 height=32 
                  src="13.files/13.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::konghe::]]');" 
                  href="javascript:void(0)"><IMG title=恐吓 height=32 
                  src="13.files/14.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::gaoxing::]]');" 
                  href="javascript:void(0)"><IMG title=高兴 height=32 
                  src="13.files/15.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::kunjuan::]]');" 
                  href="javascript:void(0)"><IMG title=困倦 height=32 
                  src="13.files/16.gif" width=32 border=0></A></TD></TR>
              <TR>
                <TD><A onclick="insertSmile('[[::yiwen::]]');" 
                  href="javascript:void(0)"><IMG title=疑问 height=32 
                  src="13.files/17.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::zhaoji::]]');" 
                  href="javascript:void(0)"><IMG title=着急 height=32 
                  src="13.files/18.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::nanguo::]]');" 
                  href="javascript:void(0)"><IMG title=难过 height=32 
                  src="13.files/19.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::shenqi::]]');" 
                  href="javascript:void(0)"><IMG title=生气 height=32 
                  src="13.files/20.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::tongku::]]');" 
                  href="javascript:void(0)"><IMG title=痛苦 height=32 
                  src="13.files/21.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::yumen::]]');" 
                  href="javascript:void(0)"><IMG title=郁闷 height=32 
                  src="13.files/22.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::daku::]]');" 
                  href="javascript:void(0)"><IMG title=大哭 height=32 
                  src="13.files/23.gif" width=32 border=0></A></TD>
                <TD><A onclick="insertSmile('[[::jingkong::]]');" 
                  href="javascript:void(0)"><IMG title=惊恐 height=32 
                  src="13.files/24.gif" width=32 
            border=0></A></TD></TR></TBODY></TABLE></DIV></TD></TR>
        <TR>
          <TD><BR><INPUT type=hidden value=do name=submit> <INPUT class=btn01 onclick=alert_login(); type=button value=发表评论 name=submit1> 
<INPUT class=btn01 type=reset value=重新填写 name=重置> 
        </TD></TR></FORM></TBODY></TABLE></TD></TR></TBODY></TABLE><BR><!--<table width="100%"  border="0" cellpadding="5" cellspacing="1" class="box_common">
			<tr valign="top">
             <td>&nbsp;</td>
           </tr>
		   <tr><td class="box_content">
		   
		 <A name="reply"></A></td>
		   </tr>
		   </table>--></TD></TR></TABLE></DIV></DIV></DIV>
<TABLE class=module_content cellSpacing=0 cellPadding=0 border=0>
  <TBODY>
  <TR>
    <TD class=corner_lb>
      <DIV class=mainLayer_lb>
      <DIV class=subLayer_lb></DIV></DIV></TD>
    <TD class=corner_cb><IMG height=1 width=1></TD>
    <TD class=corner_rb>
      <DIV class=mainLayer_rb>
      <DIV class=subLayer_rb></DIV></DIV></TD></TR></TBODY></TABLE></DIV></DIV><!--底部公用文件-->
<DIV id=copyright><A href="http://www.5jia1.com/main/aboutus/?t=1" 
target=_blank>关于5jia1</A> | <A 
href="http://www.5jia1.com/personal/member/index.php?member_id=100773" 
target=_blank>客户服务</A> | <A href="http://www.5jia1.com/aboutus/?t=4" 
target=_blank>联系我们</A> | <A 
href="http://www.5jia1.com/league/index.php?gid=329849" target=_blank>意见留言板</A> 
| <A href="http://www.5jia1.com/personal/member/index.php?member_id=100773" 
target=_blank>帮助</A><BR>北京美嘉文化有限公司版权所有&nbsp;&nbsp; Copyright &copy; 2005 5jia1.com 
All rights reserved<BR>京ICP证 050254</DIV>
<SCRIPT src="13.files/urchin.js" type=text/javascript></SCRIPT>

<SCRIPT type=text/javascript>
  _uacct="UA-177986-4";
  urchinTracker();
</SCRIPT>
</CENTER><IFRAME id=hidden_frame name=hidden_frame src="about:blank" 
frameBorder=0 width=0 scrolling=no height=0></IFRAME><IFRAME marginWidth=0 
marginHeight=0 src="13.files/update_online.htm" frameBorder=0 width=0 
scrolling=no height=0></IFRAME><!--default_run//-->
<SCRIPT language=JavaScript type=text/JavaScript>

function set_comment(bid,sid)
{
	document.comment.bid.value = bid;
	document.comment.sid.value = sid;
	
}
function formsubmit()
{
	if (document.comment.content.value.trim() == "")
	{
		showAlert("评论内容不能为空!");
		document.comment.content.focus();
		return false;
	}
	var cdw = check_deny_word(document.comment) ;
	if (cdw != false)
	{
		showAlert(cdw);
		return false;
	}
	return true;
}

// 弹出收藏页面
function add_favorite(uid,url)
{
	window.open("/personal/favorite/add.php?member_id="+uid+"&url="+url,'_blank','width=400,height=220,toolbar=0,locationbar=0,menubar=0,statbar=0'); 
	return false;
}

// 提示登录
function alert_login()
{
	showAlert('对不起,您目前没有权限,请先登录!');
	document.login_form1.account.focus();
}
</SCRIPT>
</BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -