Skip to content

Instantly share code, notes, and snippets.

@dasibre
Last active December 24, 2015 20:29
Show Gist options
  • Save dasibre/6858094 to your computer and use it in GitHub Desktop.
Save dasibre/6858094 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
//Point A
int count = 0;
while (count < 100){
cout << "Welcome to C++";
count++;
// Point B
cout << "Welcome to Point B";
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment