-1
我想在C++中使用ncurses進行進度條,但是我還沒有成功。所有'#'同時出現,沒有動畫。有人能幫助我嗎。進度條ncurses
這是我的代碼:
#include <iostream>
#include <ncurses.h>
#include <unistd.h>
using namespace std;
int main()
{
initscr();
for (int n = 0; n < 10; n++)
{
mvaddch(0,n,'#');
usleep(10000);
}
getch();
endwin();
}
謝謝您的幫助。
your'e the man :) – fchaouqui