Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
using namespace std; int main() { cout.fill('.'); cout.width(10); cout << 5 << "\n"; cout.width(10); cout << 25 << "\n"; cout.width(10); cout << 125 << "\n"; return 0; }
.........5
........25
.......125