Initial Commit

This commit is contained in:
2012-01-22 16:14:32 -05:00
commit f5e306f67f
155 changed files with 5097 additions and 0 deletions

18
C/io.c Normal file
View File

@@ -0,0 +1,18 @@
/**
* io.c
* This program will demonstrate basic I\O
* @author ricky barrette
* @date Oct 24, 2011
*/
#include <iostream>
using namespace std;
void main ()
{
int i;
cout << "Please enter an integer value: ";
cin >> i;
cout << "The value you entered is " << i;
cout << " and its double is " << i*2 << ".\n";
}