首页/ 题库 / [判断题]

相关题目

Windows中,"记事本"文件默认的文件扩展名是".txt"

ping命令可用于检查网络故障。

ipconfig命令可以用来显示当前TCP/IP配置信息。

(1.2)梁的剪力图如(   )所示(5分)

【考查知识点:导数综合】

若函数f (x)在点x0处可导,则(    )是错误的.  

10.位移法只能用于静定结构。

(1.2)梁的剪力图如(   )所示(5分)

5.设计概算可分为(   )。

2.整体护理的特点有:   

10.手术室护理工作的特殊性表现在: 

5.临终关怀的任务是(   ) 。

7.临终关怀的主要目的是(   )。

public static void main(String[] args) {

           int x, y=0;

          for(x=1; x<5; x++) y+=x*x;

          System.out.println("y="+y);

 }

public static void main(String[] args) {

          int x, y=0;

          for(x=1; x<10; x++)

               if(x%2==0) y+=x*x;

          System.out.println("y="+y);

 }

public static void main(String[] args) {

         int x=1, y=1;

          while(x++<5) y+=x*x;

          System.out.println("y="+y);

  }

public class XXK2 {

private int a,b;

public XXK2(int aa, int bb) {a=aa; b=bb;}

public int f1(int x) {

if(x>10) return a+b+3*x;

else return a*b*x;

}

public static void main(String[] args) {

XXK2 x=new XXK2(3,4);

int y=x.f1(8);      

System.out.println("y="+y);

}

}

public class XXK4 {

public static void main(String[] args) {

int []a={2,5,8,10,15,20};

int s=0;

for(int i=0; i<a.length; i++) s+=a[i];

System.out.println("s="+s);

}

}

public class XXK4 {

public static void main(String[] args) {

String []a={"xxk","weirong","xucong","xuxiaohua","baojuan"};

int m=0;

for(int i=0; i<a.length; i++) {

int n=a[i].length();

if(n>m) m=n;

}

System.out.println("m="+m);

}

}

Public class Test {

Public static void main(String[] args) {

Vector teamList = new Vector();

teamList.add("Z");

teamList.add("L");

teamList.add("W");

teamList.remove(0);

teamList.remove(0);

System.out.println(teamList.size()+","+teamList.get(0));

 

}

       

}

class ABC {

String name;

double price;

public ABC(String na, double pr) {name=na; price=pr;}

public int compareTo(ABC x) {

if(name.compareTo(x.name)>0) return 1;

if(name.compareTo(x.name)<0) return -1;

else return 0;

}

}

public class XXK5 {

public static void main(String[] args) {

String []s={"apple", "pear", "tangerme", "banana", "grape"};

double []d={3.8, 2.5, 3.2, 4.3, 5.2};

ABC []ar=new ABC[s.length];

int i,k=0;

for(i=0; i<ar.length; i++)

ar[i]=new ABC(s[i],d[i]);

for(i=1; i<ar.length; i++)

if(ar[i].compareTo(ar[k])>0) k=i;

System.out.println(ar[k].name+" "+ar[k].price);

}

}

广告位招租WX:84302438

免费的网站请分享给朋友吧