第9周项目5-1

编号及代码:

  1. /*  
  2.  * Copyright (c) 2014, 烟台大学计算机学院  
  3.  * All rights reserved.  
  4.  * 文件名称:test.cpp  
  5.  * 作    者:范星月 
  6.  * 完成日期:2014年 10 月 26日  
  7.  * 版 本 号:v1.0  
  8.  *  
  9.  * 问题描述:无;
  10. * 输入描述: 输入1000以内能被3整除且个位数为6的所有整数
  11.  * 程序输出:输出符合要求的数
  12. */
  13. </pre><p> </p><pre class="html" name="code">#include <iostream>
    
    using namespace std;
    
    int main()
    {
        int i,j;
        for (i=0;i<=100;i++)
        {
            j=i*10+6;
            if (j%3==0)
                cout <<"j="<<j<<endl;
    
        }
    
        cout << endl;
        return 0;
    }


    运行结果:

  14.  

    第9周项目5-1_第1张图片
  15. 学习总结:记住=与==的不同
  16. 学习心得:加油吧!!!

你可能感兴趣的:(第9周项目5-1)