Quiz)方程式を解く
3101 ワード
public class Main {
public static void main(String[] args) {
for (int x = 1; x <= 10; x++) {
for (int y = 1; y <= 10; y++) {
int res = 4 * x + 5 * y;
if (res == 60) {
System.out.println("(" + x + "," + y + ")");
}
}
}
}
Reference
この問題について(Quiz)方程式を解く), 我々は、より多くの情報をここで見つけました https://velog.io/@losuif/Quiz-방정식의-해-구하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol