Nested ternary operator : Ternary operator « Operator « C Tutorial

Home
C Tutorial
1.Language
2.Data Type
3.String
4.printf scanf
5.Operator
6.Statement
7.Array
8.Function
9.Structure
10.Pointer
11.Memory
12.Preprocessor
13.File
14.Data Structure
15.Search Sort
16.Wide Character String
17.assert.h
18.ctype.h
19.math.h
20.setjmp.h
21.signal.h
22.stdio.h
23.stdlib.h
24.string.h
25.time.h
26.wctype.h
C / ANSI-C
C++
C++ Tutorial
Visual C++ .NET
C Tutorial » Operator » Ternary operator 
5.11.1.Nested ternary operator
#include <stdio.h>

int main(void)
{
  const double unit_price = 3.50;
  const double discount1 = 0.05
  const double discount2 = 0.1;  
  const double discount3 = 0.15;
  double total_price = 0.0;
  int quantity = 10;

  total_price = quantity*unit_price*(1.0 -
                   (quantity>50 ? discount3 : (
                           quantity>20 ? discount2 : (
                                  quantity>10 ? discount1 : 0.0))));

  printf("The price for %d is $%.2f\n", quantity, total_price);
  return 0;
}
The price for 10 is $35.00
5.11.Ternary operator
5.11.1.Nested ternary operator
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.