表達(dá)式的規(guī)律很簡單,從2開始,遇到偶數(shù)則相加,遇到奇數(shù)則相減,直到100.
創(chuàng)新互聯(lián)公司專注于張家港網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供張家港營銷型網(wǎng)站建設(shè),張家港網(wǎng)站制作、張家港網(wǎng)頁設(shè)計、張家港網(wǎng)站官網(wǎng)定制、微信小程序定制開發(fā)服務(wù),打造張家港網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供張家港網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
計算后的結(jié)果是51.
提供參考代碼如下:
public class Main {
public static void main(String[] args) {
System.out.println(calc(100));
}
/**
* 計算 2-3+4-5+6-7.....-99+100
* @param n 100
* @return result
*/
public static int calc(int n){
// 限制 n 的值從2開始
if(n 2) return 0;
int result = 0;
for(int i = 2; i = n; i++){
if(i % 2 == 0){
result += i; // 偶數(shù)則加
}else {
result -= i; // 奇數(shù)則減
}
}
return result;
}
}
/**
* @Description: java遍歷200以內(nèi)的偶數(shù),并且進(jìn)行累計求和,在控制臺打印出所有偶數(shù)的加和? 我寫個最簡單的代碼
*/
public class OuShu {
public static void main(String[] args) {
int sum = 0;
System.out.println("200以內(nèi)的偶數(shù):");
for (int i = 0; i = 200; i = i + 2) {
System.out.print(i + ",");
// 10個數(shù)分行打印
if (i % 20 == 0 i 0) {
System.out.println();
}
sum += i;
}
System.out.println();
System.out.println("總數(shù)為:" + sum);
}
}
代碼如下:
/**
文件名:new.java
**/
public class new {
public static void main(String[] args) {
int num = 0;
for (int i = 1; i = 100; ++i) {
if (i % 2 == 0) {
num += i;
}
}
System.out.println("得數(shù)是:" + num);
}
}
public class Demo05ShiCao{
public static void main(String[] args){
int sum1 = 0;
for(int i = 1; i = 100; i++){
if(i % 2 == 0){
sum1 +=i;
}
}
System.out.println("結(jié)果是:" + sum1);
System.out.println("==============================================");
int sum2 = 0;
int c = 1;
while(c = 100){
c++;
if(c % 2 == 0){
sum2 += c;
}
}
System.out.println("結(jié)果是:"+sum2);
System.out.println("==============================================");
int sum3 = 0;
int d = 100;
do{
if(d % 2 == 0){
int f;
sum2 += f;
}
d++;
}while(d = 100);
System.out.println("結(jié)果是:"+sum3);
}
拿走不謝
網(wǎng)站標(biāo)題:java偶數(shù)相加代碼 java求偶數(shù)位之和
分享網(wǎng)址:http://vcdvsql.cn/article16/doiejgg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計公司、外貿(mào)建站、做網(wǎng)站、網(wǎng)站策劃、、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)