TAILIEUCHUNG - Applied C# in Financial Markets phần 3

chương trình đi qua một danh sách các trái phiếu và cho biết thêm các biểu tượng để danh mục đầu tư trái phiếu có năng suất dưới 10% hoặc không có một đồng tiền JPY và trưởng thành hơn 5 năm. Ví dụ : các nhà khai thác hợp lý và có điều kiện if (((Năng suất 5) (biểu tượng)); | The Basics of C 7 program goes through a list of bonds and adds the symbol to the portfolio where the bond has a yield of less than 10 or does not have a currency of JPY and a maturity of more than 5 years. Example Conditional and logical operators if Yield CCY JPY mat 5 symbol Operator precedence In C as in most other programming languages the operators have different rules of precedence. These are that the comparative operators work from left to right while the assign operators are right to left. Consider the expression in Example where there is a mathematical operator and an assign operator. What the programmer is trying to achieve is to assign the results of the rate divided by the number of days to a variable yield. Example Operator precedence double yield rate numberOfDays The first operator that is performed is rate numberOfDays and the result is then assigned to the variable yield. This has worked because the operator precedence is such that the calculation operation is performed before the assign operator. Now consider Example where there are two mathematical operators the order in which the divide or the multiply are performed is important to the result. Example Precedence of logical operators double yield rate numberOfDays 100 The mathematical operations are performed from left to right with the calculation of rate numberOfDays being executed before being multiplied by 100. In Example the same calculation is done but this time the brackets take higher precedence meaning that the number of days multiplied by 100 is done before the division. Example Precedence of logical operators with brackets double yield rate numberOfDays 100 8 Applied C in Financial Markets The best way to perform complicated calculations is either to break the calculation down into a number of steps or surround the blocks with brackets this reaps rewards when it comes to maintenance of the code. In Example the calculation .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.