Zju -- Simple Task

Source: Internet
Author: User

Original question:

Given a positive integer n and the odd integer o and the nonnegative integer p such that n = o2 ^ p.

 

Example

 

For n = 24, o = 3 and p = 3.

 

Task

 

Write a program which for each data set:

Reads a positive integer n,

 

Computes the odd integer o and the nonnegative integer p such that n = o2 ^ p,

 

Writes the result.

 

Input

 

The first line of the input contains exactly one positive integer d equal to the number of data sets, 1 <= d <= 10. The data sets follow.

 

Each data set consists of exactly one line containing exactly one integer n, 1 <= n <= 10 ^ 6.

 

Output

 

The output shoshould consists of exactly d lines, one line for each data set.

Line I, 1 <= I <= d, corresponds to the I-th input and shoshould contain two integers o and p separated by a single space such that n = o2 ^ p.

 

Sample Input

1

24

 

Sample Output

3 3

 

Original code:

[Cpp]
# Include <stdio. h>
 
# Include <math. h>
 
Int main ()
 
{
 
Int N;
 
Int cases;
 
Int I, j;
 
Int flag;
 
Scanf ("% d", & cases );
 
While (cases --)
 
{
 
Scanf ("% d", & N );
 
Flag = 0;
 
For (I = 1; I + = 2)
 
{
 
For (j = 0; j ++)
 
{
 
If (I * pow (2, j)> N)
 
Break;
 
If (I * pow (2, j) = N)
 
{
 
Printf ("% d \ n", I, j );
 
Flag = 1;
 
Break;
 
}
 
}
 
If (flag = 1)
 
Break;
 
}
 
}
 
Return 0;
 
}

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.