A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

分析以下需求,并用代码实现:
        (1) 计算15+25+35+....+1005的和

class Text6 {
        public static void main(String[] args) {
                int sum =0;
                for (int x=10;x <=1005 ;x++ )
                {
                        if (x%10!=5)
                        {        continue;
                                }
                        sum = sum +x;
                }System.out.println(sum);
        }
}

8 个回复

倒序浏览
X起始值为什么不用15
回复 使用道具 举报
何必那么麻烦,x赋初值15,每次循环x+=10就ok了
回复 使用道具 举报
[Java] 纯文本查看 复制代码
public class Ti01 {
	public static void main(String[] args) {
		int n = 15;
		int sum = 0;
		while(n<=1005){
			sum+=n;
			n+=10;
		}
		System.out.println(sum);
	}
}
回复 使用道具 举报 1 0
666666666666学习下
回复 使用道具 举报
向大神学习
回复 使用道具 举报
这个程序浅显易懂,一目了然,基本没问题
回复 使用道具 举报
你写的不简单啊
回复 使用道具 举报
class Test6 {
        /*
        分析以下需求,并用代码实现:
        (1) 计算15+25+35+....+1005的和
        */
       
        public static void main(String[] args) {
                int sum = 0;
                for (int x = 15;x <= 1005; ) {
                        x += 10;
                        sum += x;
                }
                System.out.println(sum);
        }
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马