Doozee Graphics (Paint Brush)
This is a simple graphics program that creates the basic graphical shapes like square, oval and elipse, both filled and 3D. You can choose a color for shapes, fills and the background. The screen shot is in black & white but the program is actually in colour.
AI
Resumen de IA: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Código fuente
//by fritz300 of http://hax-studios.net
#include <fstream.h>
#include <iostream.h>
#include <stdlib.h>
int main()
{
//** Declare Varibles, Theres only one
char text[80];
//** Declare pointers
ifstream fin;
ofstream fout;
//** Begin; tell user what he/she is about to do
cout << "Welcome to Fritzs Text Write program, This program (with source code included) \nwill teach you how to write text to files!\n\n";
//** End;
cout << "Type a word:\n";
cin >> text;
fout.open("c:/windows/desktop/file.txt"); //** Opens the file to write too.
fout << "Fritzs Text Write Program Example:\n\nYou typed:\n\n\t";
fout << text; //** Writes the input to file.txt
fout.close();
//** Error handler aka what happens if a error occurs
if( !fin || !fout )
{
cout<<"Error has occured. Cannot open file.txt\n\n" << endl;
}
cout<<"\nText was successfully written to C:/windows/desktop/file.txt\n" << endl;
cout << "\n\n\tText write program by Zak Farrington alias fritz owner of hAx Studios Ltd. <http://hax-studios.net> development team." << endl;
system("PAUSE");
return 0;
}
Upload
Comentarios originales (3)
Recuperado de Wayback Machine