ex2_05.cpp

来自「一本语言类编程书籍」· C++ 代码 · 共 24 行

CPP
24
字号
// Exercise 2.5 Finding the largest of two integers without comparing them.
#include <iostream>
using std::cin;
using std::cout;

int main() {

  long a = 0L;
  long b = 0L;

  cout << "Enter a positive integer: ";
  cin >> a;
  cout << "Enter another different positive integer: ";
  cin >> b;

  // The trick is to find arithmetic expressions for each of the larger
  // and the smaller of the two integers
  long larger = (a*(a/b) + b*(b/a))/(a/b + b/a);
  long smaller = (b*(a/b) + a*(b/a))/(a/b + b/a);
  cout << "\nThe larger integer is " << larger << "."
       << "\nThe smaller integer is " << smaller << ".\n";

  return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?