Forum: C++ Feb 7th, 2005 |
| Replies: 9 Views: 7,558 Se desiderate VB che so dove potete ottenerli, trasmettami un messaggio riservato se interessaste |
Forum: C++ Dec 30th, 2004 |
| Replies: 12 Views: 3,219 if i did any code, do you really think i would need your help, as you know 1kb is 1024 byes, therefore 40 kb is 40960 byes, how can i write a program which only has 40 kb. |
Forum: C++ Dec 26th, 2004 |
| Replies: 11 Views: 4,681 there notthing wrong it compiles |
Forum: Website Reviews Dec 22nd, 2004 |
| Replies: 2 Views: 11,948 please have a look at my website, and tell me what you think off it
http://www.freewebs.com/yb2pls/index.htm
and tell me how i can improve it, admins please don't delete this after all i do spend... |
Forum: C++ Dec 21st, 2004 |
| Replies: 7 Views: 2,217 |
Forum: C++ Dec 21st, 2004 |
| Replies: 7 Views: 2,217 look i just need a example program that all |
Forum: C++ Dec 20th, 2004 |
| Replies: 7 Views: 2,217 i want something like when you used 10 k, in your memory it should say 22k left. it could be about anything like a simple calculatotr, i just need a example or my assignment |
Forum: C++ Dec 20th, 2004 |
| Replies: 7 Views: 2,217 years ago programmers used to hand there jobs as a IBM 360 which was sent to a operators to run them.
is there a program where there is only 32k in the main memory.
can you give me a exaple... |
Forum: Game Development Dec 20th, 2004 |
| Replies: 15 Views: 12,742 yes i do, do you want an example of a c++ graphics program? (ie NOT graphics.h...) |
Forum: C++ Dec 17th, 2004 |
| Replies: 3 Views: 1,783 http://www.freewebs.com/yb2pls/index.htm |
Forum: C++ Dec 16th, 2004 |
| Replies: 10 Views: 46,340 http://www.freewebs.com/yb2pls/index.htm
#include<iostream.h>
struct temperature_node
{
int day;
float temperature;
temperature_node *next; |
Forum: Game Development Dec 16th, 2004 |
| Replies: 15 Views: 12,742 look just give me a example, for example a basic program which will use the graphic.h |
Forum: C++ Dec 16th, 2004 |
| Replies: 8 Views: 2,967 http://www.freewebs.com/yb2pls/index.htm |
Forum: C++ Dec 16th, 2004 |
| Replies: 9 Views: 2,588 http://www.freewebs.com/yb2pls/index.htm
#include <iostream.h>
void main()
{
int number, sum, total = 0, avg;
for(int n = 1; n <= 50; n++ )
{
cout << "enter... |
Forum: C++ Dec 15th, 2004 |
| Replies: 12 Views: 2,782 ps if you have time go to:
http://www.freewebs.com/yb2pls/index.htm, and please sign the guest book
#include <iostream.h>
int main ()
{
int i;
cout << "Please enter a number" << endl; |
Forum: Game Development Dec 14th, 2004 |
| Replies: 15 Views: 12,742 so what the the extension for microsoft |
Forum: Game Development Dec 14th, 2004 |
| Replies: 15 Views: 12,742 does anyone know why grapfic.h does't work on microsoft c++ |
Forum: C++ Dec 14th, 2004 |
| Replies: 8 Views: 2,967 http://www.freewebs.com/yb2pls/index.htm |
Forum: C++ Dec 9th, 2004 |
| Replies: 3 Views: 40,066 #include <iostream.h>
int mergesort;
int main(void)
{
int ar[100];
int i, v, len;
for (i=0; i<100; i++) {
cout << "enter a number (-1 to quit): "; |
Forum: C++ Dec 9th, 2004 |
| Replies: 12 Views: 98,438 #include <iostream>
#include <windows.h> // WinApi header
using namespace std;
int main()
{
Beep(523,500); // 523 hertz (C5) for 500 milliseconds
Beep(587,500);
... |
Forum: C++ Dec 8th, 2004 |
| Replies: 6 Views: 7,619 i haven done it but it will help what i have done
#include <iostream>
#include <iomanip>
#include <conio.h>
#include <cstdlib>
// #include <cmath>
using std::setprecision;
using std::setw; |
Forum: C++ Dec 8th, 2004 |
| Replies: 10 Views: 2,549 #include <iostream.h>
void main()
{
float min, max, temp, count;
count = 0;
cout << "enter a number" << endl;
cin >> max; |
Forum: C++ Dec 8th, 2004 |
| Replies: 4 Views: 1,954 #include <iostream.h>
const int SIZE =3;
float sum;
float tests[SIZE]={0};
float average;
char terminate; |
Forum: C++ Dec 8th, 2004 |
| Replies: 9 Views: 3,296 #include <iostream>
#include <iomanip>
#include<string>
#include<cstdlib>
using namespace std;
int main()
{
char choice; |