Skip to content

Instantly share code, notes, and snippets.

@kdmkdmkdm
Created September 18, 2013 23:10
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 kdmkdmkdm/6617041 to your computer and use it in GitHub Desktop.
Save kdmkdmkdm/6617041 to your computer and use it in GitHub Desktop.
hello world
#include <iostream>
using namespace std;
int main()
{
for(int cnt1 = 0, int cnt2 = 9; cnt1 < 10; ++cnt1, --cnt2)
{
cout << cnt1 << "---Hello, World!---" << cnt2 << endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment