屏幕显示:
Running ... [ 1 ]
位置 [ 1 ] 会有 " " " - " " / " " | " 循环交替出现,就像是一根木棒在旋转
以下是源代码:
#include iostream
#include fstream
#include string
using namespace std;
//显示等待条
class Progress
{
public:
//iv是等待的速度
Progress(int iv=1)
{
intv=iv;
cur=1;
itmp=0;
}
//运行等待条
void Do()
{
if (itmp==intv+1)
{
itmp=0;...[ 查看全文 ]