小 T 想买一个玩具很久了,但价格有些高,他打算等便宜些再买。但天天盯着购物网站很麻烦,请你帮小 T 写一个降价提醒机器人,当玩具的当前价格比他设定的价格便宜时发出提醒。
输入第一行是两个正整数 N 和 M (1≤N≤100,0≤M≤1000),表示有 N 条价格记录,小 T 设置的价格为 M。
接下来 N 行,每行有一个实数 Pi(?1000.0<Pi<1000.0),表示一条价格记录。
对每一条比设定价格 M 便宜的价格记录 P,在一行中输出 On Sale! P,其中 P 输出到小数点后 1 位。
4 99
98.0
97.0
100.2
98.9
On Sale! 98.0
On Sale! 97.0
On Sale! 98.9
输入数据通过对比设定好的价格,如果一旦定于那个价格就输出 On Sale! P(其中 P 输出到小数点后 1 位)
暂无
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int N = scanner.nextInt();
int price = scanner.nextInt();
double[] salePrice = new double[N];
for (int i = 0; i < salePrice.length; i++) {
salePrice[i] = scanner.nextDouble();
}
for (int i = 0; i < salePrice.length; i++) {
if(salePrice[i] < price){
System.out.printf("On Sale! %.1f\n",salePrice[i]);
}
}
}
}