Last active
July 12, 2018 00:20
-
-
Save hotwatermorning/f7845a6bc14996721d1b1eabc257100c to your computer and use it in GitHub Desktop.
carriage return and overwriting a line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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