[ create a new paste ] login | about

beebum

Name: Terry
Email:
Site/Blog: http://tyson.homeunix.org
Location:
Default language: C++
Favorite languages:
About: Software Automation Designer

Saved pastes by beebum:

C++, pasted on Oct 19:
1
2
3
4
// The old 30 days program using a while loop.
// You are offered a job working in the heat from sunup to sundown for 30 days.
// Your salary starts at $0.01 per day and will double each day.
// Would you take the job? Run this program and see if the job is worth it.
...
view (44 lines, 32 lines of output)
C++, pasted on Oct 19:
1
2
3
4
// The old 30 days program using a for loop.
// You are offered a job working in the heat from sunup to sundown for 30 days.
// Your salary starts at $0.01 per day and will double each day.
// Would you take the job? Run this program and see if the job is worth it.
...
view (43 lines, 32 lines of output)
C++, pasted on Aug 19:
1
2
3
4
5
// a simple exercise in pointers

#include <iostream>

int main()
...
view (24 lines, 11 lines of output)