1670 - DotA

通过次数

0

提交次数

0

时间限制 : 1 秒 内存限制 : 32 MB

DotA(Defence of the Ancients) is very popular in Zhejiang University.Now a new hero appears in DotA.This hero has a miraculous skill.If the target's HP n is an even number,then it will be cut in half after skill-using.Otherwise the targe's HP will plus one after skill-using.Given a target's HP,we want to decrease the target's HP from n to 1 only with this new skill.

题目输入

The input consists of multiple test cases.Each case contain one line with an integer n(1<n≤1000000000).

题目输出

For each test case,output the target's HP's changing process on a single line.The HP values connect with '-' character.

输入/输出样例

输入格式

5
21

输出格式

5-6-3-4-2-1
21-22-11-12-6-3-4-2-1

C语言解答

#include<stdio.h>
int main()
{
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        printf("%d",n);
        while(1)
        {
            if(n%2==0)
            {
                printf("-%d",n/2);
                n=n/2;
            }
            else
              {
                      printf("-%d",n+1);
                      n=n+1;
              }
            if(n==1)
                break;
        }
        printf("\n");
    }
}

C++解答

#include <stdio.h>
int n;
void run()
{
	printf("%d",n);
	while(n!=1)
	{
		if(n%2==1)
			n++;
		else
			n/=2;
		printf("-%d",n);//这道题唯一值得注意的地方就是不要输出多余的减号!!!每行里减号比数要少一个,所以注意判断。 
	}
	printf("\n");
}
int main()
{
	while(scanf("%d",&n)!=EOF)
		run();
	return 0;
} 

Java解答

import java.util.*;
public class Main {
            public static void main(String[] args) { 
              Scanner input = new Scanner(System.in) ;
              while(input.hasNextInt()){
                  int n = input.nextInt();
                System.out.print(n+"-");
                  while(n!=1){
                    if(n%2==0){ n=n/2;System.out.print(n);}
                    else {n=n+1;System.out.print(n);}
                    if(n!=1) System.out.print("-");
                    else  System.out.println();
                    }
                
                }
            }
        }