算法训练 数对
Posted watchfree
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法训练 数对相关的知识,希望对你有一定的参考价值。
算法训练 数对
时间限制:1.0s 内存限制:512.0MB
问题描述
编写一个程序,该程序从用户读入一个整数,然后列出所有的数对,每个数对的乘积即为该数。
输入格式:输入只有一行,即一个整数。
输出格式:输出有若干行,每一行是一个乘法式子。(注意:运算符号与数字之间有一个空格)
输入输出样例
样例输入
32
样例输出
1 * 32 = 32
2 * 16 = 32
4 * 8 = 32
8 * 4 = 32
16 * 2 = 32
32 * 1 = 32
2 * 16 = 32
4 * 8 = 32
8 * 4 = 32
16 * 2 = 32
32 * 1 = 32
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc=new Scanner(System.in); int num=sc.nextInt(); for(int i=1;i<=num;i++){ if(num%i==0){ System.out.println(i+" * "+(num/i)+" = "+num); } } } }
以上是关于算法训练 数对的主要内容,如果未能解决你的问题,请参考以下文章