Skip to content

Instantly share code, notes, and snippets.

@zhpmatrix
Created January 8, 2017 09:57
Show Gist options
  • Save zhpmatrix/53a3b943d8c3fb493163e456c6f802e4 to your computer and use it in GitHub Desktop.
Save zhpmatrix/53a3b943d8c3fb493163e456c6f802e4 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main(){
int x = 10;
while(x --> 0){
cout << x << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment