zoukankan      html  css  js  c++  java
  • General Problem Solving Techniques [Beginner-1]~A

    When you first made the computer to print the sentence “Hello World!”, you felt so happy, not knowing how complex and interesting the world of programming and algorithm will turn out to be. Then you did not know anything about loops, so to print 7 lines of “Hello World!”, you just had to copy and paste some lines. If you were intelligent enough, you could make a code that prints “Hello World!” 7 times, using just 3 paste commands. Note that we are not interested about the number of copy commands required. A simple program that prints “Hello World!” is shown in Figure 1. By copying the single print statement and pasting it we get a program that prints two “Hello World!” lines. Then copying these two print statements and pasting them, we get a program that prints four “Hello World!” lines. Then copying three of these four statements and pasting them we can get a program that prints seven “Hello World!” lines (Figure 4). So three pastes commands are needed in total and Of course you are not allowed to delete any line after pasting. Given the number of “Hello World!” lines you need to print, you will have to find out the minimum number of pastes required to make that program from the origin program shown in Figure 1.

    Input

    The input file can contain up to 2000 lines of inputs. Each line contains an integer N (0 < N < 10001) that denotes the number of “Hello World!” lines are required to be printed. Input is terminated by a line containing a negative integer.

    Output

    For each line of input except the last one, produce one line of output of the form ‘Case X: Y ’ where X is the serial of output and Y denotes the minimum number of paste commands required to make a program that prints N lines of “Hello World!”.

    Sample Input

    2

    10

    -1

    Sample Output

    Case 1: 1

    Case 2: 4

    解题思路:题目的大概意思就是将一个需要输出的编程句子复制黏贴,最开始的句子个数为1,以后每黏贴一次,个数翻倍。求所需的个数需要黏贴的次数为多少,案例一负数为结束标志。简单来说是一个数学问题。

    程序代码:

    #include<stdio.h>
    int main()
    {
        int t,v=0;
        while(scanf("%d",&t)==1&&t>0)
        {
            v++;
            int count=1,f=0;
            while(count<t)
            {
                count=count*2;
                f++;
            }
            printf("Case %d: %d
    ",v,f);
        }
        return 0;
    }
  • 相关阅读:
    常用变量的获取
    批出里中常用参数的含义
    利用批处理命令复制指定文件到指定目录下
    跟后台打印程序系统服务通讯时出现错误。请打开服务管理单元,确认后台打印程序服务是否在运行。
    系统日志报错i8042prt无法加载
    删除指定路径下指定天数之前(以文件名中包含的日期字符串为准)的文件:字符串截取
    删除指定路径下指定天数之前(以文件的最后修改日期为准)的文件:BAT + VBS
    Linux学习笔记
    Docker
    Python学习笔记
  • 原文地址:https://www.cnblogs.com/chenchunhui/p/4820303.html
Copyright © 2011-2022 走看看