大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
for循环里面改一下就可了:
创新互联公司是一家专注于网站建设、做网站与策划设计,定州网站建设哪家好?创新互联公司做网站,专注于网站建设十年,网设计领域的专业建站公司;建站业务涵盖:定州等地区。定州做网站价格咨询:18982081108
int sum = i * x + j * y;
if(sum==112){
System.out.println(i+","+j);
break;
}
答案:2天晴天和6天雨天 或 5天晴天和1天雨天
class FlowerShop {
String[] Flower = null;
int x = 0;
int y ;
FlowerShop(int x) {
Flower = new String[x];
}
public void add(String flowers) {
Flower[y] = flowers;
y++;
}
public String Information(String Flower) {
if(Flower.equals("水仙花")) {
return "水仙属石蒜科水仙属多年生草本植物,原产中国,在中国已有一千多年栽培历史," +
"为中国传统名花之一。此属植物全世界共有800多种,其中的10多种具有极高的观赏价值。" +
"水仙原分布在中欧、地中海沿岸和北非地区,中国的水仙是多花水仙的一个变种,种名为" +
":Narcissus tazetta var.chinensis Roem";
//这里省略其他的花朵信息
}
return Flower;
}
}
public class Test {
public static void main(String args[]) {
FlowerShop f = new FlowerShop (3);
f.add("水仙花");
f.add("紫罗兰");
f.add("玫瑰花");
try {
for(int i=0; if.Flower.length; i++) {
if(args[0].equals(f.Flower[i])) {
System.out.println("你所查询的是 :" + f.Flower[i] +"\n" +"\n" + f.Information(f.Flower[i]));
}
}} catch(ArrayIndexOutOfBoundsException e) {
System.out.println("请输入要查询的花朵信息");
}
}
}
我已经在你的第二个百度号回答过了,你的技术要求我好多没用到,但完全符合你的功能,你可以自行修改下。我新手,能力不是很高,希望帮到您
也可以,,不过,,也有用脚本编程,编出来的..一般我们不会去编一个这个东西..都是别人编好了..我们拿来用...一般用javacript或vbscript编写..可以去网上查一查...查网页特效,,,将会查出好多效果...
public class Book implements Comparable{
String name;
float price;
public Book() {
}
public Book(String name,float price){
this.name=name;
this.price=price;
}
public void setName(String name){
this.name=name;
}
public String getName(){
return name;
}
public void setPrice(float price){
this.price=price;
}
public float getPrice(){
return price;
}
public int compareTo(Object b) {
if(((Book)b).price-this.price==0)
return 0;
if(((Book)b).price-this.price!=0)
return 1;
return -1;
}
}
import java.util.Scanner;
import java.util.ArrayList;
import java.util.Iterator;
public class BookTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
String str;
System.out.println("input several Book,in the end #");
Scanner in = new Scanner(System.in);
ArrayListBook list = new ArrayListBook();
while (true) {
str = in.nextLine();
if (str.equals("#")) {
break;
}
String[] info = str.split(",");
String name = info[0];
float price = Integer.parseInt(info[1]);
list.add(new Book(name, price));
}
IteratorBook it = list.iterator();
System.out.println("input a new Book:");
str = in.nextLine();
String[] info = str.split(",");
String name = info[0];
float price = Integer.parseInt(info[1]);
Book book=new Book(name,price);
System.out.println("new book:"+ name +"as same bo