使用while迴圈語句計算1~1000之間能被3和7同時整除的整數之和
import java.util.*;
public class Homework3_2{
public static void main(String args[]){
int sum=0,max=1000,i=1;
while(i<=1000)
{
if(i%3==0&&i%7==0){
sum=sum+i;}
i=i+1;
}
System.out.println(sum);
}
}
相關推薦
使用while迴圈語句計算1~1000之間能被3和7同時整除的整數之和
import java.util.*; public class Homework3_2{ public static void main(String args[]){ int sum=0,max=1000,i=1; while(i<=1000) {
給一個數能不能被3和7同時整除
package jiou; public class My { /** * @param args */ public static void main(String[] args) { int i=21; if(i%3==0&&i%7=
1-1000中能被三整除但不能被七整除且至少有一位數為五的所有整數
{ int a,b,c,d; for(a=3;a<1000;a++) { b=a/100; c=(a-b*100)/10; d=a-100*b-10*c; if(a%3
180113 打印1-100既能被3整除又能被5整除的數
如何 條件 col 沒有 打印 。。 生成 clas body for i in range(1,101): #for ... in... 循環 生成器 range...1到101範圍 if(i%3==0 and i%5==0): #如果 i這個變量 除以
求出1-100之間能夠被3整除的所有數的和
第一步: public class TestFor{ public static void main(String[] args){ //求出1-100之間能夠被3整除的所有數的和 for(int a =1;a<=100;a++){ //1.輸出1-100之間的所有
輸出1-100中能被3整除但不能被5整除的數,並統計這樣的數有多少個
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Con
4.用while和for迴圈輸出1到100之間能被5整除的數,且每行輸出3個。
用while和for迴圈輸出1到100之間能被5整除的數,且每行輸出3個。 /** * [說明]:用while和for迴圈輸出1到100之間能被5整除的數,且每行輸出3個。 * @author aeon */ public class TestWhileFor { public stat
計算1~100之間,能被3整除但是不能被7整除的數的和(C語言)
#include<stdio.h> int main(agrc *agrv) { int n,i; int sum=0; scanf("%d",&n); for(i=1;i<=n;i++){ if(i%3==0&&i%7!=0){ sum+=i; &
求出1~1000之間所有能被7整除的數,並每五個求一次和。
<span style="font-size:24px;"> int a=0,b=0,sum=0; while (a < 1000) { a++; if (a % 7
用do-while迴圈語句求1000以內所有偶數的和
/* * Copyright (c) 2012, 煙臺大學計算機學院 * All rights reserved. * 作 者: 董慧 * 完成日期:2012 年10月28日 * 版 本 號:v1.0 * * 輸入描述: 無
for迴圈語句,求1-100之和。求出1-100之間偶數和
需求: A:求1-100之和。 B:求出1-100之間偶數和 C:求出1-100之間奇數和(自己做) class ForDemo4 { public static void main(String[] args) {
1.while迴圈實現列印1到10
while迴圈實現列印1到10 /** * [說明]:while迴圈實現列印1到10 * @author aeon */ public class TestWhile { public static void main(String[] args) { int i = 1
Python:while迴圈語句
while語句 while語句: 作用: 根據一定條件,重複執行一條語句或多條語句 語法: while 真值表達式: 語句塊1(此部分語句可能會重複執行多次) else: 語句塊2 說明: 1. 先執行真值表達式,得到布林值為True或False 2. 如果
以猜數字遊戲為例理解C語言while迴圈語句和if條件
迴圈語句和條件語句是程式語言的基礎, 而while迴圈語句與if條件語句是條件語句和迴圈語句的基礎. 因此我們在學習C語言的開始要好好學習與認真思考著兩個語句. 本次將藉助簡單的猜數字遊戲開幫助大家理解. 首先我們會讓系統隨機獲得一個數字,然後讓玩家輸入一個數字,系統會提醒是"高了"
Python學習-while迴圈語句
Python 程式設計中 while 語句用於迴圈執行程式,即在某條件下,迴圈執行某段程式,以處理需要重複處理的相同任務。即重複性的做一件事情 語法形式如下: while 判斷條件: 條件滿足執行語句…… 可以通過下面的列子來理解while迴圈的基本使用 while 1=
if條件語句、while迴圈語句
if條件語句基本結構: if條件: 內部程式碼塊 else: 程式碼 f語句支援巢狀 if 1==1: if 2==2 print('內容') else: print('內容') else: print('內容') if語句支援多條件判斷: if 條
java基礎(一) for / while / do...while迴圈語句
開始學習jva基礎,做此筆記 三種迴圈的區別: 對於知道明確區間的需求,比如輸出1-10之間的奇數使用for迴圈 不明確區間的使用while 使用for迴圈,迴圈一結束變數就停止佔用記憶體 初始化變數如果在迴圈外還需要用建議用while do while迴
java語言中do while迴圈至少執行1次的理解
java語言中基本迴圈結構分為三類: 1.for 2.while 3.do while 一般情況下,同樣的 "初始條件/判斷語句/迴圈體語句/步進語句" 時,執行結果相同,如下: 1. for迴圈
Python While迴圈語句(二)
好啦,咋們來了,繼續吧。 本章學習點: while else break 與 continue 上節小作業(模仿銀行輸入的密碼出錯3次,而鎖定賬戶(三次重新輸入密碼的機會)) 一. While else 組合 在我們上節已經說過了whi
計算100-1000之間合數的數量
/** * */ package com.test; /** @author QJ的 */ public class Testone { public static void main(String[] args) { int a=0; int b=0;