码迷,mamicode.com
首页 > 其他好文 > 详细

求1+2+3……+1000的和,把和输出,计算每步结果中有多少个最后以8结尾的

时间:2016-07-10 12:34:22      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

public class HM0503 {
    public static void main(String[] args){
        int s=0;//声明一个变量
        int a=0;
        for(int i=1;i<=1000;i++){
            s=s+i;
            if(s%10==8){
                a++;
            }
        }
        System.out.println("1000以内总合="+s+"    多少个以8结尾="+a);
    }
}

1000以内总合=500500    多少个以8结尾=100

求1+2+3……+1000的和,把和输出,计算每步结果中有多少个最后以8结尾的

标签:

原文地址:http://www.cnblogs.com/tianwei0/p/5657310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!