java小題

來源:互聯網
上載者:User

標籤:

1、通過鍵盤輸入一個整數n,編程計算1+2+3+...+n的值。

2、通過鍵盤輸入任意6個整數,輸出最大數和最小數。

3、編寫程式計算12-22+32-42+...+972-982+992-1002的值。

?4、定義一個學生類Student,在類中定義4個成員變數id,age,last_name(姓),first_name(名),再定義一個方法getName返回該人的全名,?在主類中建立Student類的對象,給上面的欄位賦值,同時調用方法,把全名輸出。?5、定義一個名為Cylinder表示圓柱體的類,在類中定義2個成員變數r表示底面半徑,height表示高,以及設定圓柱體的底面半徑、高值的方法initCylinder()、計算底面面積的方法getArea()、計算體積的方法getVolume() 。?在主類中建立Cylinder類的對象,同時調用initCylinder()方法,給半徑和高賦值,調用getArea() 和getVolume() 計算圓柱體的底面積和體積。?6、定義一個類Person,包括兩個成員變數name和id(分別表示姓名和編號),兩個方法sleep和eat。在sleep方法中輸出“睡覺時流56口水”,在eat方法中分別輸出“寶寶吃牛奶”。?在主類中進行測試,輸出姓名和編號,並調用其中的sleep方法和eat方法。 
</pre><pre name="code" class="java">1、import java.util.Scanner;public class test1 {public static void main(String[] args) {Scanner sc=new Scanner(System.in);int n,i,sum=0;n=sc.nextInt();for(i=1;i<=n;i++)sum+=i;        System.out.println(sum);}}
2、
import java.util.Arrays;import java.util.Scanner;public class test2 {public static void main(String[] args) {Scanner sc=new Scanner(System.in);int a[]=new int[6];int i;for(i=0;i<6;i++)a[i]=sc.nextInt();Arrays.sort(a);System.out.println(a[0]);System.out.println(a[5]);        }}

3、
public class test3 {public static void main(String[] args) {int i=12,j=22,n,sum=0;for(n=1;n<=98;n++){sum+=i-j;i+=10;j+=10;}   System.out.println(sum);}}

4、
class student{int id;int age;String last_name;String first_name;void initstudent(String l,String f){last_name=l;first_name=f;}String get(){return first_name+last_name;}}public class test4 {public static void main(String[] args) {student s=new student();    s.initstudent("lin","yu");    System.out.println(s.get());}}

5、
class Cylinder{double r;double height;void initCylinder(double l,double h){r=l;height=h;}double getArea(){return Math.PI*r*r;}double getVolume(){return Math.PI*r*r*height;}}public class test5 {public static void main(String[] args) {Cylinder c=new Cylinder();c.initCylinder(8.6, 5.5);System.out.println(c.getArea());System.out.println(c.getVolume());}}

6、
class Person{int id;String name;String sleep(){return "睡覺時流56口水";}String eat(){return "寶寶吃牛奶";}}public class test6 {public static void main(String[] args) {Person p=new Person();System.out.println(p.eat());System.out.println(p.sleep());}}



java小題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.