创建一个ascii进度条


12

好吧,这类似于这个问题,但有一点区别。您必须编写一个程序来询问进度条的宽度以及完成了多少工作。然后绘制具有以下功能的进度条:

  • width表示绘制进度条必须使用多少个字符

  • 进度是通过介于0.1.1之间的浮点值给出的

  • 进度栏中的第一个和最后一个字符应与所有其他字符不同,例如“ [”和“]”

  • 您的程序应使用两个不同的字符来表示自开始以来已完成的进度

  • 您必须使用十进制数字+“%”符号在进度条的中间写出要完成的工作量。

处理极端输入(例如完成的150%或-5%)的奖励积分

得分字符数*(1个不带奖金或0.75个宽度的奖金)

有效输出的一些示例

79 0.15
[||||||||||||                         15%                                     ]

25 0.76
[##########76%#####.....]

39 -0.12
[                 -12%                 ]

25 7.6
[##########760%#########]

如何获取输入?命令行?Stdin?以上任何一个?
lochok

@lochok我想stdin是一个更好的选择。
Ali1S232'4

Answers:


3

PHP 84 x 0.75 = 63

编辑:不太“漂亮”的版本,但根据规则应有效:

[<?=str_pad(!fscanf(STDIN,~Ú›Ú™,$a,$b),$a*min(1,$b),~ß)|str_pad(100*$b.~Ú,$a,_,2)?>]

输出:

$ echo 79 0.15 | php progress-bar.php
[⌂⌂⌂⌂⌂⌂⌂⌂⌂⌂⌂___________________________15%______________________________________]
$ echo 25 0.76 | php progress-bar.php
[⌂⌂⌂⌂⌂⌂⌂⌂⌂⌂⌂76%⌂⌂⌂⌂⌂______]
$ echo 39 -0.12 | php progress-bar.php
[_________________-12%__________________]
$ echo 25 7.6 | php progress-bar.php
[⌂⌂⌂⌂⌂⌂⌂⌂⌂⌂760%⌂⌂⌂⌂⌂⌂⌂⌂⌂⌂⌂]


原始(98 x 0.75 = 73.5)

[<?=strtr(str_pad(!fscanf(STDIN,~Ú›Ú™,$a,$b),$a*min(1,$b),~ß)|str_pad(100*$b.~Ú,$a,~ü,2),~ü,~ß)?>]

输出:

$ echo 79 0.15 | php progress-bar.php
[###########                           15%                                      ]
$ echo 25 0.76 | php progress-bar.php
[###########76%#####      ]
$ echo 39 -0.12 | php progress-bar.php
[                 -12%                  ]
$ echo 25 7.6 | php progress-bar.php
[##########760%###########]

我想知道如何运行您的代码。
Ali1S232

将其另存为php文件。将两个参数作为空格分隔的字符串发送给STDIN。例如:[windows / linux命令提示符] echo 79 0.15 | php progress-bar.php您将需要安装php-cli(命令行界面)。Windows的大多数php安装程序应包括(或可选)它,带有apt-get install php5-cli的linux
primo

我之所以选择此答案,是因为据我测试,此答案始终可以按预期工作,而ephemient提供的答案有时并未在中间准确显示该数字。
Ali1S232

4

J,78×0.75 = 58.5

'w p'=:_".1!:1]3
1!:2&4('%',~":100*p)(i.@[-<.@-:@-)&#}'[]'0 _1}' |'{~(w*p)>i.w
$ echo -n 79 0.15 | jconsole test.ijs
[|||||||||||| 15%]
$ echo -n 25 0.76 | jconsole test.ijs
[||||||||||| 76%||||| ]   
$ echo -n 39 -0.12
[_12%]
$ echo -n 25 7.6 | jconsole test.ijs
[|||||||||| 760%||||||||||]   

(J中的负数以开头_,而不是-。幸运的是,yadic ".可以解析这两种格式。)


它在计算要显示的条形数量时是否排除百分比所占用的空间?因为它似乎得到了与我不同的结果。
grc 2012年

@grc有100列,每个百分比是一个单独的条(即使被方括号或数字/百分比等其他元素隐藏了)。
短暂

好吧,我现在明白了。干得好:)
grc 2012年

@ephemient现在,我注意到在-0.12情况下,您在左边打印18个空格,在右边打印16个空格。这意味着_12%不完全在中间。
Ali1S232

3

Perl,96×¾= 72

#!/usr/bin/perl -ap
formline'[@'.'|'x($F[0]-3).']',100*$F[1].'%';
$_=$^A;s# |(.)#$1//($-[0]<$F[0]*$F[1]?'|':$&)#eg

这是按照传统的Perl高尔夫规则(#!不计行,除了-和开关,如果有的话)。

$ echo 79 0.15 | perl test.pl
[|||||||||||| 15%]
$ echo 25 0.76 | perl test.pl
[||||||||||| 76%||||| ]
$ echo 39 -0.12 | perl test.pl
[-12%]
$ echo 25 7.6 | perl test.pl
[|||||||||| 760%||||||||||]

2

Ruby-得分93(124个字符)

w=gets.to_i-2
f=$_[/ .+/].to_f
e=f<0?0:f>1?w:(f*w).to_i
b='#'*e+' '*(w-e)
b[(w-l=(s='%d%'%(100*f)).size)/2,l]=s
puts"[#{b}]"

红宝石的另一个实现。以上述形式从STDIN读取输入。你可调换角色'#'' '并且'['']'直接在代码。

45 0.88
[####################88%##############      ]

60 1.22
[###########################122%###########################]

这总是两个字符太宽
Patrick Oscity 2012年

@padde为什么您认为两个字符太宽?第一行中有-2。
霍华德

2

蟒- 158个 155 148 143 138字符(103.5得分)

x,y=raw_input().split()
x=int(x)-2
y=float(y)
p=`int(y*100)`+"%"
b="|"*int(x*y+.5)+" "*x
print"["+b[:(x-len(p))/2]+p+b[(x+len(p))/2:x]+"]"

如果输入用逗号分隔,则可能会短30个字符。


你为什么不使用r=p.length()
Ali1S232'4

你什么意思?
grc 2012年

没什么,我不好,我只是误解了您的代码。
Ali1S232'4

但您的代码似乎无法处理-12%的情况。
Ali1S232'4

这意味着做什么?目前,它只显示一个带有百分比的空白栏。
grc 2012年

1

Q,90个字符,无奖金

{-1 @[x#" ";(1+(!)(_)x*y;0;((_)x%2)+(!)(#)($)a;x-1);:;("|";"[";a:,[;"%"]($)(100*y);"]")];}

用法

q){-1 @[x#" ";(1+(!)(_)x*y;0;((_)x%2)+(!)(#)($)a;x-1);:;("|";"[";a:,[;"%"]($)(100*y);"]")];}[50;0.15]
[|||||||                 15%                     ]

q){-1 @[x#" ";(1+(!)(_)x*y;0;((_)x%2)+(!)(#)($)a;x-1);:;("|";"[";a:,[;"%"]($)(100*y);"]")];}[30;0.35]
[||||||||||    35%           ]

q){-1 @[x#" ";(1+(!)(_)x*y;0;((_)x%2)+(!)(#)($)a;x-1);:;("|";"[";a:,[;"%"]($)(100*y);"]")];}[40;0.85]
[|||||||||||||||||||85%||||||||||||    ]

1

Scala 149:

val w=readInt 
val p=readFloat
println(("["+"|"*(p*w).toInt+" "*((w-p*w).toInt)+"]").replaceAll("(^.{"+(w/2-3)+"}).{5}","$1 "+(p*100).toInt+("% ")))

松开

def progressbar (width: Int, pos: Double) {
  println ((
    "["+
    "|"*(pos*width).toInt+
    " "*((width-pos*width).toInt)+
    "]").
    replaceAll ("(^.{" + (width/2-3) + "}).{5}", "$1 " + (p * 100).toInt + ("% ")))}
}

我决定,为了提高可读性,您确实需要在进度号周围留一个空格:

(44 to 54).map (x => b (100, x/100.0))
[||||||||||||||||||||||||||||||||||||||||||||   44%                                                  ]
[|||||||||||||||||||||||||||||||||||||||||||||  45%                                                  ]
[|||||||||||||||||||||||||||||||||||||||||||||| 46%                                                  ]
[|||||||||||||||||||||||||||||||||||||||||||||| 47%                                                  ]
[|||||||||||||||||||||||||||||||||||||||||||||| 48%                                                  ]
[|||||||||||||||||||||||||||||||||||||||||||||| 49%                                                  ]
[|||||||||||||||||||||||||||||||||||||||||||||| 50%                                                  ]
[|||||||||||||||||||||||||||||||||||||||||||||| 51%                                                  ]
[|||||||||||||||||||||||||||||||||||||||||||||| 52% |                                                ]
[|||||||||||||||||||||||||||||||||||||||||||||| 53% ||                                               ]
[|||||||||||||||||||||||||||||||||||||||||||||| 54% |||                                              ]

1

C,145个字符,得分= 108.75

float p;s;m;char x[99];main(){scanf("%d%f",&s,&p);sprintf(x+s/2-1,"%.0f%%",p*100);for(;m<s;)x[++m]||(x[m]=m<p*s?35:32);x[s-1]=93;*x=91;puts(x);}

虽然我真的很喜欢sprintf的想法,但是它会产生一个小问题,请检查您的程序是否具有20 1输入,[#######100%######]在这种情况下,它会生成输出,数字左边有7个锐角,右边有5个锐角,因此打印的数字不完全是中间。
Ali1S232'4

1

node.js:135个字符,* 0.75奖励积分,所以101.25个字符。

a=process.argv,i=a[2],p=a[3],o=i/2|0,f=i-i*p,x=['['];for(;i--;){x.push((i<f?' ':'|')+(i-o?'':p*100+'%'));}console.log(x.join('')+']');

松开

a = process.argv, // console inputs
i = a[2], // input 1 -> width
p = a[3], // input 2 -> percent complete
o = i / 2 | 0, // half of i, without any decimal places
f = i - i * p, // how far along the bar to draw spaces
x = ['[']; // start an array
while(i--){ // while i > 0
    x.push( // add to the array
    (i < f ? ' ' : '|') // a space, or | depending on how far along the bar we are
    + (i - o ? '' : p * 100 + '%')); // and if we're halfway, add the percentage complete
}
console.log(x.join('') + ']'); // then write out the array as a string, with a trailing ]

输出:

D:\mercurial\golf\ascii>node progressBar.js 25 7.6
[|||||||||||||760%||||||||||||]

D:\mercurial\golf\ascii>node progressBar.js 39 -0.12
[                    -12%                   ]

D:\mercurial\golf\ascii>node progressBar.js 79 0.15
[|||||||||||                             15%                                       ]

1

PHP-128x0.75 => 96

<?fscanf(STDIN,'%d%d',$w,$p);$v='[';for($i=1;$i<$w-1;)$v.=($i++==$w/2-1)?$p*($i+=2)/$i.'%':(($i<$w*$p/100)?'|':' ');echo"$v]";?>

<?fscanf(STDIN,'%d%f',$w,$p);$v='[';for($i=1;$i<$w-1;)$v.=($i++==$w/2-1)?$p*100*($i+=2)/$i.'%':(($i<$w*$p)?'|':' ');echo"$v]";?>

C,149 * 0.75 = 111.75

main(w,i){float p;for(i=printf("[",scanf("%d%f",&w,&p));i<w-1;)(i++==w/2-1)?printf("%.0f%%",p*100*(i+=2)/i):printf("%c",i<=(p*w)?'|':' ');puts("]");}

输出:

80
0.75
[||||||||||||||||||||||||||||||||||||||75%||||||||||||||||||                   ]

80
7.60
[||||||||||||||||||||||||||||||||||||||760%|||||||||||||||||||||||||||||||||||||]


80
-0.12
[                                      -12%                                     ]

p应该是一个浮点值,介于0..1
Ali1S232

@Gajet感谢您的关注。已纠正:)
l0n3sh4rk'4

0

的JavaScript 127 125,没有奖金

l=9,p="0.99",f=l*p|0,m=l/2|0,x=["]"];for(;l--;)x.unshift(l>=f?"-":"+");x[m++]=p[2],x[m++]=p[3],x[m]="%";alert("["+x.join(""))
//[+++99%++-]

用法:更改l=9与其它长度和/或改变p="0.99"与其他百分比

注意:以零结尾0.X0而不是0.X


0

MATL,得分35.25(47 * 0.75)

qqtl&O61bti*Xl:(HG100*V37hyn2/kyny+q&:(91w93v!c

在线尝试!

说明:

         % implicit input, say w = 79
qq       % decrement input by 2 (to allow brackets on either side)
tl&O     % duplicate and create array with that many zeros
61       % Push '=' character
b        % bubble up w-2 from below
ti*      % duplicate and multiply by second input, say p = 0.15
         %  stack: [[0;0;0;...;0], 61, 77, 11.55]
Xl       % take minimum of (w-2) and (w-2)*p
         %  (used when p > 1, makes eligible for bonus)
:        % create range 1 to that value 
         %  stack: [[0;0;0;...;0], 61, [1 2 3 4 5 ... 11]]
(        % assign into the first array the value 61 ('=') at the 
         %  indices denoted by the third array
HG       % push second input again
100*V    % multiply by 100 and convert to string
37h      % append the '%' symbol to it
yn2/k    % compute half of the length of the output array
yny+q    % copy of that + length of the 'N%' string - 1
         % stack: [[61;61;61;...;0;0;0], '15%', 38, 40]
&:       % make a range from the first to the second (38 to 40)
(        % assign the 'N%' string at those places into the output array
91w93    % surround by '[' (ASCII 91) and ']' (93) characters
v!       % combine into a single array, make it horizontal for display, 
c        % change it to character type (implicitly displayed)

0

Excel VBA,108 * .75 = 81字节

这需要从输入的功能[A1][B1],并输出到控制台

s=""&[MID(IFERROR(REPT("",A1*B1),"")&REPT("",A1),2,A1-2)]&"":n=100*[B1]:Mid(s,([A1]-len(n))/2)=n &"%":?s

输出量

与输入[A1]=25[B1]=.76

76%

带输入 [A1:B1].Resize(1,2)=Split("32 -.5")

-50%

带输入 [A1:B1].Resize(1,2)=Split("40 10.01")

1001%
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.