CS department website
www.cs.qc.cuny.edu/
80: visual basic
Visual Stuidio is an IDE
integrated development environment
IDE
111: c++
#include <iostream>
using namespace std;
int main()
{
 int a, b;
 cout << "Please enter two numbers separated by a space. " << endl;
 cin >> a;
 cin >> b;
 int c;
 c  = a + b;
 cout << "Your sum was " << c << endl;
 return 0;
}
SELECT
INSERT INTO Book (AuthorCode, Title, PubID)
VALUES (35, 'Hello There World', 'MH');
UPDATE
DELETE
 
No comments:
Post a Comment