Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hotwatermorning/f7845a6bc14996721d1b1eabc257100c to your computer and use it in GitHub Desktop.
Save hotwatermorning/f7845a6bc14996721d1b1eabc257100c to your computer and use it in GitHub Desktop.
carriage return and overwriting a line
#include <iostream>
#include <chrono>
#include <thread>
#include <cmath>
// 行を上書きして更新するサンプル
int main()
{
std::cout << "Hello" << std::endl;
for(int i = 0; i < 25; ++i) {
std::cout << "\r" << " " << "\r" << i << " : " << std::sqrt(i) << std::flush;
//std::cout << "\r" << (char)27 << "[2K" << i << " : " << std::sqrt(i) << std::flush;
std::this_thread::sleep_for(std::chrono::seconds(1));
}
std::cout << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment