Trinocular Operation C

Source: Internet
Author: User
Three-mesh operators:
  1. 10>5; is the binocular operator;! 10; is the monocular operator;
  2. Trinocular operator format: condition? Value 1: value 2;
  3. int a = 10>5? 9:89; True, returns the preceding number; the result is 9;
  4. Calculates the maximum value of two integers: int a = 10; int b = 12;int c = (A > B):? a:b;
  5. Calculates the maximum value of 3 integers: int a = 23;int b = 23;int c = 993;int Abmax = (a > B)? A:b;int d = (Abmax > C)? abmax:c;
  6. Less code is not necessarily high performance;
  7. This code is not necessarily good: not readable;

Trinocular Operation C

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.