Yeni fiyat
Hükümetin mallarına yeni vergiler getirdi. Envanterindeki tüm fiyatları tek seferde güncellemek istiyorsun; her birinin değerine yarısını ekleyeceksin.
Bu egzersiz, kursun bir parçasıdır
Orta Düzey Java
Egzersiz talimatları
- Fonksiyonuna doğru türü ver.
- Argümanın bir buçuk katını döndür.
- Uygun türde bir
fordöngüsü kullan.
Uygulamalı etkileşimli egzersiz
Bu egzersizi bu örnek kodu tamamlayarak deneyin.
class PriceCalculator {
// Give the correct type to your function
static ____ oneAndAHalf(double a) {
// Use the proper operations to get the result
return ____;
}
public static void main(String[] args) {
double[] numbers = {76, 38.3, 10, 42, 98.5, 84, 50, 72.2, 98, 96};
// Use the congruous type of for loop
for (____) {
numbers[i] = oneAndAHalf(numbers[i]);
System.out.println(numbers[i]);
}
}
}