Skip to content

Instantly share code, notes, and snippets.

@invatainfo
Created September 16, 2017 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save invatainfo/2e4702e1e9c479a28424a380c66fce5b to your computer and use it in GitHub Desktop.
Save invatainfo/2e4702e1e9c479a28424a380c66fce5b to your computer and use it in GitHub Desktop.
#include <fstream.h>
ofstream f("nr.txt");
void main() {
long n;
cin >> n;
while (n) {
f << n << " ";
n = n / 10;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment