Joshua's Thoughts

lolcode – the dumbest programming language ever

Tags: , ,

http://lolcode.com/ is a new programming language derived from the lolcats “scene” – if such a thing even exists. ugg.

example:

HAI
CAN HAS STDIO?
VISIBLE “HAI WORLD!”
KTHXBYE

c++ equivalent
#include

int main () {
cout << “HAI WORLD!”;
return 0;
}

CIT-120 Week 3 Notes – Output Manipulators and Character Arrays

Tags: , , ,

This week was all about output manipulators, character arrays, and an introduction to logic. We didn’t do a whole lot of review this week but Professor Delta did ask us what we thought about the logic games we did last week. Because most people responded positively to the games, she ended up giving us a homework related to another logic-based game.
Read on…

CIT-120 Week 2 Notes – Writing Your First Program

Tags: , , ,

This week was slightly more challenging with the introduction of some logic challenges in the form of two games called “Mastermind” and “Cross the River”. The classwork portion consisted of a quiz over last weeks content, the cin operator, writing your first program, and cin.ignore().

Read on…