- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这段代码来找到最大公约数,但是有一个语句行我真的很困惑,我只是想知道如何理解它以及它在调用什么。
这是一段令我感到困惑的代码:
int common = denom_one > denom_two ? gcd(denom_one, denom_two) : gcd(denom_two, denom_one);
这是包含它的程序:
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package gcd;
import java.util.Scanner;
/**
*
* @author LWTECH
*/
public class GCD {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//adding two fractions 1/42 + 1/30 = ?
int num_one = 1; // numerator of the first fraction (1/42)
int denom_one = 42; // denominator of the first fraction (1/42)
int num_two = 1; // numerator of the second fraction (1/30)
int denom_two = 30; // denominator of the second fraction (1/30)
int num_sum; // numerator of the sum to be calculated
int denom_sum; // denominator of the sum to be calculated
// finding the greatest common divider of the denominators of the two fractions
// in the case of our example the GCD of 42 and 30 is 6
int common = denom_one > denom_two ? gcd(denom_one, denom_two) : gcd(denom_two, denom_one);
int mult_one = denom_two / common; // finding the multiple for the first fraction, it is 5
int mult_two = denom_one / common; // finding the multiple for the second fraction, it is 7
// the two fractions are being added now: 1/42 + 1/30 = 12/210
num_sum = num_one*mult_one + num_two*mult_two;
denom_sum = denom_one * mult_one;
System.out.printf("%d/%d + %d/%d = %d/%d\n", num_one,denom_one,
num_two, denom_two,
num_sum, denom_sum);
// Simplifying the fraction 12/210.
// Finding GCD of the numerator and denominator
common = gcd(denom_sum, num_sum);
denom_sum = denom_sum/common;
num_sum = num_sum/common;
System.out.printf("After simplification: %d/%d + %d/%d = %d/%d\n", num_one,denom_one,
num_two, denom_two,
num_sum, denom_sum);
}
/**
* This method implements Euclid's algorithm of calculation
* of the greatest common divider (GCD) of two integers.
* The algorithm has recursive nature:
* GCD of x and y with x > y is the same as GCD of y and (x % y )
* (x= ky + x%y)
*
* @param x first integer
* @param y second integer
* @return greatest common divider
*/
public static int gcd(int x, int y)
{
do
{
int tmp;
tmp = y;
y = x%y;
x = tmp;
}
while(y>0);
return x;
}
}
最佳答案
这是一个三元运算符。它的使用方式与 if (...) {} else {}
语句类似。事情是这样的。
condition ? true : false;
当尝试用条件初始化变量时,它很有用。
String bool = isTrue ? "true" : "false";
在您的情况下,如果 denom_one
大于 denom_two
,则它将使用 gcd(denom_one, denom_two)
否则,它将使用 gcd(denom_one, denom_two)
关于java - 这个句子怎么读,它叫什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61281061/
我在不同的硬件上测试 Cassandra 已经有一段时间了。 首先我有 2 个 CPU 和 6 GB RAM 然后我更改为 16 个 CPU 和 16 GB RAM(其中只有 6 GB 可供我的测试使
我只是想从二进制文件中读/写。我一直在关注 this教程,它的工作原理......除了它似乎正在将内容写入 txt 文件。我在测试的时候把文件命名为test.bin,但是记事本可以打开并正常显示,所以
我编写了一些简单的 Java 代码来从文本文件中读取字符串,将它们组合起来,然后将它们写回。 (有关输出没有变化的简化版本,请参见下面的片段) 问题是输入文件和输出文件中的特定字符(- 和 ...)是
我真的很感兴趣——你为什么要放 readln; 从键盘读取一些值到变量后的行?例如, repeat writeln('Make your choise'); read(CH); if (CH = '1
只要程序不允许同时写入存储在模块中的共享数据结构的相同元素,它是线程安全的吗?我知道这是一个菜鸟问题,但在任何地方都找不到明确解决的问题。情况如下: 在程序开始时,数据被初始化并存储在模块级可分配数组
我有一个数据结构,其操作可以归类为读取操作(例如查找)和写入操作(例如插入、删除)。这些操作应该同步,以便: 读操作不能在写操作执行时执行(除非在同一线程上),但是读操作可以与其他读操作并发执行。 在
我在Java套接字编程中有几个问题。 在读取客户端套接字中的输入流时,如果抛出IO异常;那么我们是否需要重新连接服务器套接字/再次初始化客户端套接字? 如果我们关闭输出流,它将关闭客户端套接字吗? 如
我正在尝试从客户端将结构写入带有套接字的服务器。 结构是: typedef struct R { int a; int b; double c; double d; double result[4];
我想知道是否可以通过 Javascript 从/向 Azure Active Directory 广告读取/写入数据。我读到 Azure 上有 REST 服务,但主要问题是生成与之通信的 token
我希望有人能提供完整的工作代码,允许在 Haskell 中执行以下操作: Read a very large sequence (more than 1 billion elements) of 32
我有一个任务是制作考试模拟器。我的意思是,在老师输入某些科目的分数后,学生输入他的名字、姓氏和出生,然后他决定学生是否通过科目。所以,我有一个问题,如何用新行写入文件文本并通过重写该文件来读取(逐行读
我需要编写巨大的文件(超过 100 万行)并将文件发送到另一台机器,我需要使用 Java BufferedReader 一次读取一行。 我使用的是 indetned Json 格式,但结果不太方便,
我在 Android 应用程序中有一个读写操作。在 onCreate 上,将读取文件并将其显示为编辑文本并且可以进行编辑。当按下保存按钮时,数据将被写入 onCreate 上读取的同一文件中。但我得到
我正在编写一个程序,该程序从一个文件读取输入,然后该程序将格式化数据并将其写入另一个文件。 输入文件: Christopher kardaras,10 N Brainard,Naperville,IL
我有一个 SCALA(+ JAVA) 代码,它以一定的速率读写。分析可以告诉我代码中每个方法的执行时间。如何衡量我的程序是否达到了最大效率?为了使我的代码优化,以便它以给定配置可能的最大速度读取。我知
嗨,我想知道如何访问 java/maven 中项目文件夹中的文件,我考虑过使用 src/main/resources,但有人告诉我,写入此目录中的文件是一个坏主意,并且应该只在项目的配置中使用,所以我
我想读\写一个具有以下结构的二进制文件: 该文件由“RECORDS”组成。每个“RECORD”具有以下结构:我将以第一条记录为例 (红色)起始字节:0x5A(始终为 1 字节,固定值 0x5A) (绿
我想制作一个C程序,它将用一些参数来调用;每个参数将代表一个文件名,我想在每个参数中写一些东西。 FILE * h0; h0 = fopen(argv[0],"w"); char buff
我有一个包含团队详细信息的文件。我需要代码来读取文件,并将获胜百分比写入第二个文件。我还需要使用指示的搜索功能来搜索团队的具体信息。该代码未写入百分比文件。当菜单显示时,第一个文件的内容被打印,但代码
我正在使用 read() 和 write() 函数来处理我的类,并且我正在尝试使用一个函数来写入它所读取的内容以及我作为参数给出的前面的内容。 例如,我想给出 10 作为我的程序的参数 int mai
我是一名优秀的程序员,十分优秀!