版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、1】題目:古典問(wèn)題:有一對(duì)兔子,從出生后第3 個(gè)月起每個(gè)月都生一對(duì)兔子,小兔子長(zhǎng)到第三個(gè)月后每個(gè)月又生一對(duì)兔子,假如兔子都不死,問(wèn)每個(gè)月的兔子總數(shù)為多少Jpublic class lianxi04public static void main(String args) Scanner s = new Scanner;" 請(qǐng)鍵入一個(gè)正整數(shù): ");int n = ();int k=2;+ "=" );while(k <= n) if(k = n) else if( n % k = 0) + "*");n = n / k; else
2、 k+;【程序5】> =90 分的同學(xué)用A 表示, 60-89 分之題目:利用條件運(yùn)算符的嵌套來(lái)完成此題:學(xué)習(xí)成績(jī)間的用B 表示,60 分以下的用C 表示。import .*;public class lianxi05 public static void main(String args) int x;char grade;Scanner s = new Scanner;" 請(qǐng)輸入一個(gè)成績(jī): ");x = ();grade = x >= 90 'A': x >= 60 'B':'C'"等級(jí)為:&q
3、uot;+grade);【程序6】題目:輸入兩個(gè)正整數(shù)m和n,求其最大公約數(shù)和最小公倍數(shù)。/* 在循環(huán)中,只要除數(shù)不等于0,用較大數(shù)除以較小的數(shù),將小的一個(gè)數(shù)作為下一輪循環(huán)的大數(shù),取得的余數(shù)作為下一輪循環(huán)的較小的數(shù),如此循環(huán)直到較小的數(shù)的值為0,返回較大的數(shù),此數(shù)即為最大公約數(shù),最小公倍數(shù)為兩數(shù)之積除以最大公約數(shù)。* /import .*;public class lianxi06 public static void main(String args) int a ,b,m;Scanner s = new Scanner;"鍵入一個(gè)整數(shù):");a = ();"再
4、鍵入一個(gè)整數(shù):");b = ();deff cd = new deff();m = (a,b);int n = a * b / m;"最大公約數(shù): " + m);"最小公倍數(shù): " + n);class deffpublic int deff(int x, int y) int t;if(x < y) t = x;x = y;y = t;while(y != 0) if(x = y) return x;else int k = x % y;x = y;y = k;return x;【程序 7】題目:輸入一行字符,分別統(tǒng)計(jì)出其中英文字母、空
5、格、數(shù)字和其它字符的個(gè)數(shù)。import .*;public class lianxi07 public static void main(String args) int digital = 0;int character = 0;int other = 0;int blank = 0;char ch = null;Scanner sc = new Scanner;String s = ();ch = ();for(int i=0; i< i+) if(ch >= '0' && ch <= '9') digital +; els
6、e if(ch >= 'a' && ch <= 'z') | ch > 'A' && ch <= 'Z') character +; else if(ch = ' ') blank +; else other +;"數(shù)字個(gè)數(shù): " + digital);"英文字母?jìng)€(gè)數(shù): " + character);"空格個(gè)數(shù): " + blank);"其他字符個(gè)數(shù):" + other );【程序
7、8】題目:求 s=a+aa+aaa+aaaa+aa.a的值,其中 a 是一個(gè)數(shù)字。例如 2+22+222+2222+22222(此時(shí)共有5 個(gè)數(shù)相加),幾個(gè)數(shù)相加有鍵盤控制。import .*;public class lianxi08 public static void main(String args) long a , b = 0, sum = 0;Scanner s = new Scanner;"輸入數(shù)字a 的值: ");a = ();"輸入相加的項(xiàng)數(shù):");int n = ();int i = 0;while(i < n) b = b
8、+ a;sum = sum + b;a = a * 10;+ i;【程序 9】題目: 一個(gè)數(shù)如果恰好等于它的因子之和,這個(gè)數(shù)就稱為"完數(shù)"。 例如 6=1 2 3.編程 找出 1000 以內(nèi)的所有完數(shù)。public class lianxi09 public static void main(String args) "1 到 1000 的完數(shù)有:");for(int i=1; i<1000; i+) int t = 0;for(int j=1; j<= i/ 2; j+) if(i % j = 0) t = t + j;if(t = i)
9、+ " ");【程序 10】題目:一球從100 米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在第10 次落地時(shí),共經(jīng)過(guò)多少米第10 次反彈多高public class lianxi10 public static void main(String args) double h = 100,s = 100;for(int i=1; i<10; i+) s = s + h;h = h / 2;"經(jīng)過(guò)路程:" + s);"反彈高度:" + h / 2);【程序 11】題目:有1 、 2、 3、 4 四個(gè)數(shù)字,能組成多少個(gè)
10、互不相同且無(wú)重復(fù)數(shù)字的三位數(shù)都是多少public class lianxi11 public static void main(String args) int count = 0;for(int x=1; x<5; x+) for(int y=1; y<5; y+) for(int z=1; z<5; z+) if(x != y && y != z && x != z) count +;+ y*10 + z );"共有" + count + "個(gè)三位數(shù)");【程序12】題目:企業(yè)發(fā)放的獎(jiǎng)金根據(jù)利潤(rùn)提成。
11、利潤(rùn) (I)低于或等于10萬(wàn)元時(shí),獎(jiǎng)金可提10%;利潤(rùn)高于 10 萬(wàn)元,低于20 萬(wàn)元時(shí),低于10 萬(wàn)元的部分按10%提成,高于10 萬(wàn)元的部分,可可提成%; 20 萬(wàn)到 40 萬(wàn)之間時(shí),高于20 萬(wàn)元的部分,可提成5%; 40 萬(wàn)到 60 萬(wàn)之間時(shí)高于 40 萬(wàn)元的部分,可提成3%; 60 萬(wàn)到 100 萬(wàn)之間時(shí),高于60 萬(wàn)元的部分,可提成%,高于 100 萬(wàn)元時(shí),超過(guò)100 萬(wàn)元的部分按1%提成,從鍵盤輸入當(dāng)月利潤(rùn),求應(yīng)發(fā)放獎(jiǎng)金總數(shù)import .*;public class lianxi12 public static void main(String args) double x =
12、 0,y = 0;"輸入當(dāng)月利潤(rùn)(萬(wàn)): ");Scanner s = new Scanner;x = ();if(x > 0 && x <= 10) y = x * ; else if(x > 10 && x <= 20) y = 10 * + (x - 10) * ; else if(x > 20 && x <= 40) y = 10 * + 10 * + (x - 20) * ; else if(x > 40 && x <= 60) y = 10 * + 1
13、0 * + 20 * + (x - 40) * ; else if(x > 60 && x <= 100) y = 20 * + 20 *+ 20 * + (x - 60) * ; else if(x > 100) y = 20 * + 40 *+ 40 * + (x - 100) * ;"應(yīng)該提取的獎(jiǎng)金是" + y + "萬(wàn) ");【程序13】題目:一個(gè)整數(shù),它加上100 后是一個(gè)完全平方數(shù),再加上168 又是一個(gè)完全平方數(shù),請(qǐng)問(wèn)該數(shù)是多少public class lianxi13 public static void
14、 main(String args) for(int x =1; x<100000; x+) if(x+100) % 1 = 0) if(x+268) % 1 = 0) + " 加 100 是一個(gè)完全平方數(shù),再加168 又是一個(gè)完全平方數(shù)");/* 按題意循環(huán)應(yīng)該從-100 開(kāi)始(整數(shù)包括正整數(shù)、負(fù)整數(shù)、零),這樣會(huì)多一個(gè)滿足條件的數(shù) -99。但是我看到大部分人解這道題目時(shí)都把題中的“整數(shù) ”理解成正整數(shù),我也就隨大流了。*/【程序14】題目:輸入某年某月某日,判斷這一天是這一年的第幾天import .*;public class lianxi14 public st
15、atic void main(String args) int year, month, day;int days = 0;int d = 0;int e;input fymd = new input();do e = 0;"輸入年:");year =();"輸入月:");month = ();"輸入天:");day = ();if (year < 0 | month < 0 | month > 12 | day < 0 | day > 31) "輸入錯(cuò)誤,請(qǐng)重新輸入!");e=1 ;
16、while( e=1);for (int i=1; i <month; i+) switch (i) case 1:case 3:case 5:case 7:case 8:case 10: case 12:days = 31; break;case 4:case 6:case 9:case 11:days = 30;break;case 2:if (year % 400 = 0) | (year % 4 = 0 && year % 100 != 0) days = 29; else days = 28;break;d += days;+ "-" + m
17、onth + "-" + day + " 是這年的第" + (d+day) + "天。");class inputpublic int input() int value = 0;Scanner s = new Scanner;value = ();return value;【程序15】題目:輸入三個(gè)整數(shù)x,y,z,請(qǐng)把這三個(gè)數(shù)由小到大輸出。import .*;public class lianxi15 public static void main(String args) input fnc = new input();int x
18、=0, y=0, z=0;"輸入第一個(gè)數(shù)字:");x = ();"輸入第二個(gè)數(shù)字:");y = ();"輸入第三個(gè)數(shù)字:");z = ();if(x > y) int t = x;x = y;y = t;if(x > z) int t = x;x = z;z = t;if(y > z) int t = y;y = z;z = t;" 三個(gè)數(shù)字由小到大排列為:"+x + " " + y + " " + z);class inputpublic int inpu
19、t() int value = 0;Scanner s = new Scanner;value = ();return value;【程序16】題目:輸出9*9 口訣。public class lianxi16 public static void main(String args) for(int i=1; i<10; i+) for(int j=1; j<=i; j+) + "*" + i + "=" + j*i + " " );if(j*i<10)" ");【程序17】題目:猴子吃桃問(wèn)題:猴
20、子第一天摘下若干個(gè)桃子,當(dāng)即吃了一半,還不癮,又多吃了一個(gè)第二天早上又將剩下的桃子吃掉一半,又多吃了一個(gè)。以后每天早上都吃了前一天剩下的一半零一個(gè)。到第10 天早上想再吃時(shí),見(jiàn)只剩下一個(gè)桃子了。求第一天共摘了多少。public class lianxi17 public static void main(String args) int x = 1;for(int i=2; i<=10; i+) x = (x+1)*2;"猴子第一天摘了" + x + " 個(gè)桃子 ");【程序18】題目:兩個(gè)乒乓球隊(duì)進(jìn)行比賽,各出三人。甲隊(duì)為 a,b,c三人,乙隊(duì)為
21、x,y,z三人。已抽簽決 定比賽名單。有人向隊(duì)員打聽(tīng)比賽的名單。a說(shuō)他不和x比,c說(shuō)他不和x,z比,請(qǐng)編程序找出三隊(duì)賽手的名單。public class lianxi18 static char m = 'a', 'b', 'c' ;static char n = 'x', 'y', 'z' ;public static void main(String args) for (int i = 0; i < ; i+) for (int j = 0; j < ; j+) if (mi =
22、'a' && nj = 'x') continue; else if (mi = 'a' && nj = 'y') continue; else if (mi = 'c' && nj = 'x')| (mi = 'c' && nj = 'z') continue; else if (mi = 'b' && nj = 'z')| (mi = 'b
23、9; && nj = 'y') continue; else+ " vs " + nj);【程序 19】題目:打印出如下圖案(菱形)*public class lianxi19 public static void main(String args) int H = 7, W = 7;.求出這個(gè)數(shù)列的前20 項(xiàng)之和。public class lianxi20 public static void main(String args) int x = 2, y = 1, t;double sum = 0;for(int i=1; i<=20
24、; i+) sum = sum + (double)x / y;t = y;y = x;x = y + t;" 前 20 項(xiàng)相加之和是:" + sum);【程序 21】題目:求1+2!+3!+.+20! 的和public class lianxi21 public static void main(String args) long sum = 0;long fac = 1;for(int i=1; i<=20; i+) fac = fac * i;sum += fac;【程序 22】題目:利用遞歸方法求5! 。public class lianxi22 public
25、 static void main(String args) int n = 5;rec fr = new rec();"! = "+(n);class recpublic long rec(int n) long value = 0 ;if(n =1 ) value = 1; else value = n * rec(n-1);return value;【程序23】題目:有5 個(gè)人坐在一起,問(wèn)第五個(gè)人多少歲他說(shuō)比第4 個(gè)人大 2 歲。問(wèn)第4 個(gè)人歲數(shù),他說(shuō)比第3 個(gè)人大 2 歲。問(wèn)第三個(gè)人,又說(shuō)比第2 人大兩歲。問(wèn)第2 個(gè)人,說(shuō)比第一個(gè)人大兩歲。最后問(wèn)第一個(gè)人,他說(shuō)是10
26、 歲。請(qǐng)問(wèn)第五個(gè)人多大public class lianxi23 public static void main(String args) int age = 10;for(int i=2; i<=5; i+) age =age+2;【程序24】題目:給一個(gè)不多于5 位的正整數(shù),要求:一、求它是幾位數(shù),二、逆序打印出各位數(shù)字。Jpublic class lianxi24 public static void main(String args) Scanner s = new Scanner;"請(qǐng)輸入一個(gè)正整數(shù):");long a = ();String ss = (a
27、);char ch = ();int j=;+ "是一個(gè) "+ j +"位數(shù)。 ");"按逆序輸出是:");for(int i=j-1; i>=0; i-) 【程序25】題目:一個(gè)5 位數(shù),判斷它是不是回文數(shù)。即12321 是回文數(shù),個(gè)位與萬(wàn)位相同,十位與千位相同。import .*;public class lianxi25 public static void main(String args) Scanner s = new Scanner;int a;do"請(qǐng)輸入一個(gè)5 位正整數(shù):");a = ();
28、while(a<10000|a>99999);String ss =(a);char ch = ();if(ch0=ch4&&ch1=ch3)"這是一個(gè)回文數(shù)");else "這不是一個(gè)回文數(shù)");public class lianxi25a public static void main(String args) Scanner s = new Scanner;boolean is =true;"請(qǐng)輸入一個(gè)正整數(shù):");long a = ();String ss = (a);char ch = ();in
29、t j=;for(int i=0; i<j/2; i+) if(chi!=chj-i-1)is=false;if(is=true)" 這是一個(gè)回文數(shù)");else "這不是一個(gè)回文數(shù)");【程序 26】題目:請(qǐng)輸入星期幾的第一個(gè)字母來(lái)判斷一下是星期幾,如果第一個(gè)字母一樣,則繼續(xù)判斷第二個(gè)字母。import .*;public class lianxi26 public static void main(String args) getChar tw = new getChar();"請(qǐng)輸入星期的第一個(gè)大寫字母:");char c
30、h = ();switch(ch) case 'M':"Monday");break;case 'W':"Wednesday");break;case 'F':"Friday");break;case 'T': "請(qǐng)輸入星期的第二個(gè)字母:");char ch2 = ();if(ch2 = 'U') "Tuesday"); else if(ch2 = 'H') "Thursday")
31、; else "無(wú)此寫法!");break;case 'S': "請(qǐng)輸入星期的第二個(gè)字母:");char ch2 = ();if(ch2 = 'U') "Sunday"); else if(ch2 = 'A') "Saturday"); else "無(wú)此寫法!");public static void main(String args) ;break;default:" 無(wú)此寫法!");class getCharpublic c
32、har getChar() Scanner s = new Scanner;String str = ();char ch = (0);if(ch<'A' | ch>'Z') "輸入錯(cuò)誤,請(qǐng)重新輸入");ch=getChar();return ch;【程序27】題目:求100 之內(nèi)的素?cái)?shù)27a;public class lianxi28 Scanner s = new Scanner;int a = new int10;"請(qǐng)輸入10 個(gè)整數(shù):");for(int i=0; i<10; i+) ai = (
33、);for(int i=0; i<10; i+) for(int j=i+1; j<10; j+) if(ai > aj) int t = ai;ai = aj;aj = t;for(int i=0; i<10; i+) + " ");【程序29】題目:求一個(gè)3*3 矩陣對(duì)角線元素之和import .*;public class lianxi29 public static void main(String args) Scanner s = new Scanner;int a = new int33;" 請(qǐng)輸入 9 個(gè)整數(shù):")
34、;for(int i=0; i<3; i+) for(int j=0; j<3; j+) aij = ();"輸入的3 * 3 矩陣是 :");for(int i=0; i<3; i+) for(int j=0; j<3; j+) + " ");int sum = 0;for(int i=0; i<3; i+) for(int j=0; j<3; j+) if(i = j) sum += aij;"對(duì)角線之和是:" + sum);【程序 30】題目:有一個(gè)已經(jīng)排好序的數(shù)組?,F(xiàn)輸入一個(gè)數(shù),要求按原來(lái)的
35、規(guī)律將它插入數(shù)組中。;public class lianxi30 public static void main(String args) int a = new int1, 2, 6, 14, 25, 36, 37,55;int b = new int+1;int t1 =0, t2 = 0;int i =0;Scanner s= new Scanner;"請(qǐng)輸入一個(gè)整數(shù):");int num = ();if(num >= a) b = num;for(i=0; i< i+) bi = ai; else for(i=0; i< i+) if(num &g
36、t;= ai) bi = ai; else bi = num;break;for(int j=i+1; j< j+) bj = aj-1;for (i = 0; i < ; i+) + " ");【程序 31】題目:將一個(gè)數(shù)組逆序輸出。import .*;public class lianxi31 public static void main(String args) Scanner s = new Scanner;int a = new int20;" 請(qǐng)輸入多個(gè)正整數(shù)(輸入-1 表示結(jié)束):");int i=0,j;doai=();i+
37、;while (ai-1!=-1);"你輸入的數(shù)組為:");for( j=0; j<i-1; j+) " ");"n 數(shù)組逆序輸出為:");for( j=i-2; j>=0; j=j-1) " ");【程序32】題目:取一個(gè)整數(shù)a從右端開(kāi)始的47位。import .*;public class lianxi32 public static void main(String args) Scanner s = new Scanner;"請(qǐng)輸入一個(gè)7 位以上的正整數(shù):");long a
38、= ();String ss = (a);char ch = ();int j=;if (j<7)"輸入錯(cuò)誤!");else ”截取從右端開(kāi)始的47 位是:"+chj-7+chj-6+chj-5+chj-4);【程序 33】題目:打印出楊輝三角形(要求打印出10 行如下圖)11 11 2 11 3 3 11 4 6 4 11 5 10 10 5 1 public class lianxi33 public static void main(String args) int a = new int1010;for(int i=0; i<10; i+) a
39、ii = 1;ai0 = 1;for(int i=2; i<10; i+) for(int j=1; j<i; j+) aij = ai-1j-1 + ai-1j;for(int i=0; i<10; i+) for(int k=0; k<2*(10-i)-1; k+) " ");for(int j=0; j<=i; j+) + " ");【程序34】題目:輸入3個(gè)數(shù)a,b,c,按大小順序輸出。importpublic class lianxi34 public static void main(String args) S
40、canner s = new Scanner;"請(qǐng)輸入 3 個(gè)整數(shù):");int a = ();int b = ();int c = ();if(a < b) int t = a;a = b;b = t;if(a < c) int t = a;a = c;c = t;if(b < c) int t = b;b = c;c = t;"從大到小的順序輸出:");+ " " + b + " " + c);【程序35】題目:輸入數(shù)組,最大的與第一個(gè)元素交換,最小的與最后一個(gè)元素交換,輸出數(shù)組。import
41、 .*;public class lianxi35 public static void main(String args) int N = 8;int a = new int N;Scanner s = new Scanner;int idx1 = 0, idx2 = 0;"請(qǐng)輸入8 個(gè)整數(shù):");for(int i=0; i<N; i+) ai = ();"你輸入的數(shù)組為:");for(int i=0; i<N; i+) + " ");int max =a0, min = a0;for(int i=0; i<N;
42、 i+) if(ai > max) max = ai;idx1 = i;if(ai < min) min = ai;idx2 = i;if(idx1 != 0) int temp = a0;a0 = aidx1;aidx1 = temp;if(idx2 != N-1) int temp = aN-1;aN-1 = aidx2;aidx2 = temp;"n 交換后的數(shù)組為:");for(int i=0; i<N; i+) + " ");【程序36】m 個(gè)數(shù)題目: 有 n 個(gè)整數(shù),使其前面各數(shù)順序向后移m 個(gè)位置,最后 m 個(gè)數(shù)變成最前面
43、的importpublic class lianxi36 public static void main(String args) int N =10;int a = new intN;Scanner s = new Scanner;"請(qǐng)輸入 10 個(gè)整數(shù):");for(int i=0; i<N; i+) ai = ();"你輸入的數(shù)組為:");for(int i=0; i<N; i+) + " ");");"n 請(qǐng)輸入向后移動(dòng)的位數(shù):int m = ();int b = new intm;for(in
44、t i=0; i<m; i+) bi = aN-m+i;for(int i=N-1; i>=m; i-) ai = ai-m;for(int i=0; i<m; i+) ai = bi;" 位移后的數(shù)組是:");for(int i=0; i<N; i+) + " ");【程序37】題目:有n 個(gè)人圍成一圈,順序排號(hào)。從第一個(gè)人開(kāi)始報(bào)數(shù)(從1 到 3 報(bào)數(shù)),凡報(bào)到的人退出圈子,問(wèn)最后留下的是原來(lái)第幾號(hào)的那位。importpublic class lianxi37 public static void main(String arg
45、s) Scanner s = new Scanner;"請(qǐng)輸入排成一圈的人數(shù):");int n = ();boolean arr = new booleann;for(int i=0; i< i+) arri = true;int leftCount = n;int countNum = 0;int index = 0;while(leftCount > 1) if(arrindex = true) countNum +;if(countNum = 3) countNum =0;arrindex = false;leftCount -;index +;if(in
46、dex = n) index = 0;for(int i=0; i<n; i+) if(arri = true) "原排在第"+(i+1)+"位的人留下了。");【程序38】題目:寫一個(gè)函數(shù),求一個(gè)字符串的長(zhǎng)度,在main 函數(shù)中輸入字符串,并輸出其長(zhǎng)度。/* * 題目意思似乎不能用length()函數(shù)*/import .*;public class lianxi38 public static void main(String args) Scanner s = new Scanner;"請(qǐng)輸入一個(gè)字符串:");String
47、str = ();"字符串的長(zhǎng)度是:"+();【程序39】題目: 編寫一個(gè)函數(shù),輸入 n 為偶數(shù)時(shí),調(diào)用函數(shù)求1/2+1/4+.+1/n, 當(dāng)輸入 n 為奇數(shù)時(shí),調(diào)用函數(shù)1/1+1/3+.+1/n( 利用指針函數(shù))Jpublic class lianxi39 public static void main(String args) Scanner s = new Scanner;"請(qǐng)輸入一個(gè)正整數(shù)n= ");int n = ();"相應(yīng)數(shù)列的和為:" + sum(n);public static double sum(int n) d
48、ouble res = 0;if(n % 2 = 0) for(int i=2; i<=n; i+=2) res += (double)1 / i; else for(int i=1; i<=n; i+=2) res += (double)1 / i ;return res;【程序40】題目:字符串排序。public class lianxi40 public static void main(String args) int N=5;String temp = null;String s = new StringN;s0 = "matter"s1 = &quo
49、t;state"s2 = "solid"s3 = "liquid"s4 = "gas"for(int i=0; i<N; i+) for(int j=i+1; j<N; j+) if(compare(si, sj) = false) temp = si;si = sj;sj = temp;for(int i=0; i<N; i+) static boolean compare(String s1, String s2) boolean result = true;for(int i=0; i<() &
50、amp;& i<(); i+) if(i) > (i) result = false;break; else if(i) <(i) result = true;break; else if() < () result = true; else result = false;return result;【程序 41】題目: 海灘上有一堆桃子,五只猴子來(lái)分。第一只猴子把這堆桃子憑據(jù)分為五份,多了一個(gè),這只猴子把多的一個(gè)扔入海中,拿走了一份。第二只猴子把剩下的桃子又平均分成五份,又多了一個(gè),它同樣把多的一個(gè)扔入海中,拿走了一份,第三、第四、第五只猴子都是這樣做的,問(wèn)海
51、灘上原來(lái)最少有多少個(gè)桃子public class lianxi41 public static void main (String args) int i,m,j=0,k,count;for(i=4;i<10000;i+=4) count=0;m=i;for(k=0;k<5;k+)j=i/4*5+1;i=j;if(j%4=0)count+;else break;i=m;if(count=4)"原有桃子"+j+" 個(gè) ");break;【程序42】題目: 809*=800*+9*+1 其中代表的兩位數(shù),8*的結(jié)果為兩位數(shù),9*的結(jié)果為3 位數(shù)。
52、求代表的兩位數(shù),及809* 后的結(jié)果。public class lianxi43 public static void main (String args) int sum=4;int j;" 組成1 位數(shù)是"+sum+" 個(gè) ");sum=sum*7;" 組成2 位數(shù)是"+sum+" 個(gè) ");for(j=3;j<=9;j+)sum=sum*8;"組成"+j+"位數(shù)是"+sum+”個(gè))【程序44】題目:一個(gè)偶數(shù)總能表示為兩個(gè)素?cái)?shù)之和。;public class lia
53、nxi44 public static void main(String args) Scanner s = new Scanner;int n,i;do"請(qǐng)輸入一個(gè)大于等于6 的偶數(shù):");n = (); while(n<6|n%2!=0); ;public class lianxi44 public static void main(String args) Scanner s = new Scanner;int n;do"請(qǐng)輸入一個(gè)大于等于6 的偶數(shù):");n = (); while(n<6|n%2!=0); ;public class lianxi45 public static void main (String args) Scanner s = new Scanner;"請(qǐng)輸入一個(gè)整數(shù):");int num = ();int tmp = num;int count = 0;for(int i = 0 ; tmp%9 = 0 ;)tmp = tmp/9;count +;" 能夠被 "+count+" 個(gè) 9 整除。 ");【程序46】題目:兩個(gè)字符串連接程序import .*;public class lianxi46 public static void
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 含藥物的漱口劑產(chǎn)品供應(yīng)鏈分析
- 裝有測(cè)量傳感器的健身圈項(xiàng)目營(yíng)銷計(jì)劃書
- 云計(jì)算行業(yè)營(yíng)銷策略方案
- 磁帶消磁裝置項(xiàng)目運(yùn)營(yíng)指導(dǎo)方案
- 花園水管用灑水槍商業(yè)機(jī)會(huì)挖掘與戰(zhàn)略布局策略研究報(bào)告
- 冷媒秤產(chǎn)業(yè)鏈招商引資的調(diào)研報(bào)告
- 繪圖用丁字尺項(xiàng)目營(yíng)銷計(jì)劃書
- 冷藏展示柜產(chǎn)業(yè)鏈招商引資的調(diào)研報(bào)告
- 醫(yī)用南美牛奶菜的干皮產(chǎn)品供應(yīng)鏈分析
- 傳真通信行業(yè)經(jīng)營(yíng)分析報(bào)告
- 山東省成人教育畢業(yè)生登記表
- 心理治療學(xué):4沙盤游戲2
- 試乘試駕管理規(guī)定
- 產(chǎn)品物料變更申請(qǐng)單
- 天然氣管道應(yīng)急施工方案完整
- 結(jié)構(gòu)設(shè)計(jì)原理(第四版)葉見(jiàn)曙第1-9章課后習(xí)題答案-已按新版更新
- 優(yōu)秀工作總結(jié)范文:閥門專業(yè)技術(shù)工作總結(jié)
- 按鍵外觀及可靠性測(cè)試檢驗(yàn)標(biāo)準(zhǔn)
- 胸痛鑒別診斷
- 元明粉比重表
- 房地產(chǎn)項(xiàng)目投資成本測(cè)算參考表
評(píng)論
0/150
提交評(píng)論