【简答题】An 8%, semiannual pay, option-free bond that is trading at par is maturing in 8 years. The effective duration of the bond based on a 50 basis point change in rates is closest to: A. 3.9 B. 4.0 C. 5.8
【单选题】public class Example01 { public static void main(String[] args) { int[] arr = { 4, 1, 6, 3, 9, 8 }; // 定义一个数组 int minIndex = 0; //初始时设第1个角标处的值为最小值 for (int i = 1; i < arr.length; i++) { ...