473,791 Members | 3,137 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Code running on LINUX?

Hey, I have developed the following code and it is executing well on
windows. But I don't have LINUX installed on my system. I would be
grateful to you guys if you check whether this code is working fine on
linux. I know that C++ is independent of OS, but still check it on g++
compiler.
Thanks a lot in advance.
Anchit

CODE:
#include<iostre am>
#include<string >

using namespace std;

int m=0, min, k[10], c;

class parkedcar //class holds data of the car in parking
{
string make;
int model;
string color;
string licnumber;
int minutesparked;
public:
parkedcar()
{
make=" ";
model=0;
licnumber=" ";
color=" ";
minutesparked=0 ;
}

void setmake(string mk)
{
make=mk;
}

void setmodel(int ml)
{
model=ml;
}

void setcolor(string c)
{
color=c;
}

void setlicnumber(st ring l)
{
licnumber=l;
}

void setminutesparke d(int mnp)
{
minutesparked=m np;
}

string getmake() const
{
return (make);
}

int getmodel() const
{
return (model);
}

string getcolor() const
{
return (color);
}

string getlicnumber() const
{
return (licnumber);
}

int getminutesparke d() const
{
return (minutesparked) ;
}

void print();
};

void parkedcar::prin t() //outside class definition
{
cout<<"Car Make :"<<getmake()<< endl;
cout<<"Car Model :"<<getmodel()< <endl;
cout<<"Car License Number :"<<getlicnumbe r()<<endl;
cout<<"Car Color :"<<getcolor()< <endl;
}
class parkingticket: public parkedcar //class calculates and shows
fine (if any)
{
int fine;
int minutes;
void calfine(); //helper function, calculates fine

public:
void showfine(); //function to show the fine
void getticket (int min) //calls the helper function calfine()
{
minutes=min;
calfine();
cout<<endl;
}
int getfine() const
{
return(fine);
}
};

void parkingticket:: calfine() //outside class definition
{
if(minutes/60<=0)
{
fine = 45;
}
else
{
int mn;
mn=minutes - 60;
fine = 45 + 30 + 30*(mn/60);
}
}

void parkingticket:: showfine() //outside class definition
{
cout<<" ILLEGAL PARKING"<<endl;
cout<<" Time in violation is "<<minutes/60<<" hours & "<<minutes
%60<<" minutes "<<endl;
cout<<" Fine : Rs. "<<getfine()<<e ndl;
}
parkingticket tck[10]; //Parking ticket array of objects created

class parkingmeter //This class take carea of number of minutes
purchased
{
int minpurchased;
public:
parkingmeter()
{
minpurchased=0;
}
void setminpurchased (int m)
{
minpurchased=m;
}
int getminpurchased () const
{
return(minpurch ased);
}
void print()
{
cout<<"Mins purchased are"<<getminpur chased();
}
};

class policeofficer //Responsible for patrolling and issuing
parkingticket
{ //in case vehicle is illegally parked
string name;
string badgenumber;
parkingticket *ticket; //Pointer of the type parkingticket class
public:
policeofficer()
{
name=" ";
badgenumber=" ";
ticket = NULL;
}
void setname(string n)
{
name=n;
}
void setbadgenumber( string b)
{
badgenumber=b;
}
string getname() const
{
return(name);
}
string getbadgenumber( ) const
{
return(badgenum ber);
}
parkingticket* patrol(parkingt icket pc1, parkingmeter pc2) //Patrol
function
{
if ( pc1.getminutesp arked() < pc2.getminpurch ased() ||
pc1.getminutesp arked() == pc2.getminpurch ased() )
{
return NULL; //No crimes
}
else //Illegal parking
{
tck[m].getticket(pc1. getminutesparke d() - pc2.getminpurch ased());

cout<<"--------------------------------------------------------------------------------"<<endl;
tck[m].showfine();
ticket=&tck[m];
return(ticket);
}
}
void print()
{
cout<<"Name: "<<getname()<<e ndl;
cout<<"Badge Number: "<<getbadgenumb er()<<endl;
}
};
void intro()
{
cout<<"******** *************** *************** *************** *************** ************"<< endl;
cout<<" THIS IS PARKING TICKET SIMULATOR"<<end l;
cout<<"******** *************** *************** *************** *************** ************"<< endl;
}

void choice()
{
cin>>c;
if(c==0)
{
m++;
}
else if(c==1)
{

}
else
{
cout<<"Invalid Entry, try again :"<<endl;
choice();
}
}
int main()
{
system("cls");
int i=0, y;

intro();
cout<<"PARKING RATES ::"<<endl;
cout<<"Parking rate is Rs. 25 for 60 minutes"<<endl;
cout<<endl<<end l;
cout<<"FINE RATES ::"<<endl;
cout<<"In case number of minutes car has been parked exceeds the
number of minutes purchased, then a fine is applied."<<endl ;
cout<<"Rs 45 for first hour or part of an hour that the car is
illegally parked and Rs 30 for every additional hour or part of an
hour that the car is illegally parked."<<endl;
cout<<"________ _______________ _______________ _______________ _______________ ____________"<< endl;

policeofficer officer; //Police Officer object created

string pname, pbadge;
cout<<"OFFICER' S INFORMATION ::"<<endl;
cout<<"Name: ";
cin>>pname;
cout<<"Badge Number: ";
cin>>pbadge;
officer.setname (pname);
officer.setbadg enumber(pbadge) ;
parkingmeter meter[10]; //Parking meter array of objects created

parkingticket* ticket = NULL;

do //Iteration of statements
{

system("cls");
intro();
cout<<"PARKED CAR'S INFORMATION ::"<<endl; //Officer inputs the data
of the car

string mk;
cout<<"Make :";
cin>>mk;
tck[m].setmake(mk);

int mod;
cout<<"Model :";
cin>>mod;
tck[m].setmodel(mod);

string lic;
cout<<"License number :";
cin>>lic;
y=0;
while(y<=m)
{
if (y!=m)
{
if (lic == tck[y].getlicnumber() ) //License number being a
primary key
{

cout<<"-------------------------------------------------------------------------------"<<endl;
cout<<"Car with this License Number already exists"<<endl;
tck[y].print();

cout<<"-------------------------------------------------------------------------------"<<endl;
cout<<"Try re-entering the license number :";
cin>>lic;
}
}
y++;
}
tck[m].setlicnumber(l ic);

string col;
cout<<"Color :";
cin>>col;
tck[m].setcolor(col);

int parmin; //The number of minutes a car has been parked
cout<<"Minutes in parking :";
cin>>parmin;
tck[m].setminutespark ed(parmin);
int purmin; //The number of minutes purchased
cout<<"Minutes purchased :";
cin>>purmin;
meter[m].setminpurchase d(purmin);

system("cls");
intro();

ticket = officer.patrol( tck[m], meter[m]); //The officer patrols
if(ticket==NULL )
{
// Display the ticket information.
tck[m].print();
cout<<endl;
cout<<endl;
cout<<"----------------------"<<endl;
cout<<"| NO CRIMES COMMITTED |"<<endl;
cout<<"----------------------"<<endl;
}
else
{
cout<<endl<<"No n-permitted vehicle ::"<<endl;
ticket->print(); // Display the ticket information.

cout<<"--------------------------------------------------------------------------------"<<endl;
ticket = NULL;
}
k[m] = tck[m].getminutespark ed() - meter[m].getminpurchase d();
cout<<endl<<end l<<endl<<endl<< endl;

cout<<"________ _______________ _______________ _______________ _______________ ____________"<< endl;
cout<<"Enter your choice -"<<endl;
cout<<"0 - Patrol another car 1 - View cars patrolled"<<end l;
choice();
}while (c == 0);

system("cls");
intro();
for(i=0;i<=m;i+ +)
{
cout<<" PARKED CAR "<<i+1<<endl<<e ndl;
tck[i].print();
cout<<endl<<end l;

if (k[i]>0)
{
tck[i].showfine();

cout<<"--------------------------------------------------------------------------------"<<endl;
}
else
{
cout<<"Vehicle permitted for "<<-k[i]/60<<" hours & "<<-k[i]%60<<"
minutes"<<endl;
}

cout<<"======== =============== =============== =============== =============== ============"<< endl;
}
cout<<"Officer responsible for issuing these tickets and
patroling ::"<<endl;
officer.print() ;
return 0;
}
Jul 22 '08 #1
14 2278
an********@gmai l.com wrote:

[knip]
Ok, if that is supported by linux, and what about rest of the code? Is
it executing in Linux?
There are several Linux distro's which have Live-cd's. No installation is
required so you have no excuse to not try it yourself.

Jul 22 '08 #2
On Jul 22, 12:29*pm, Gunter Schelfhout <no.m...@please .com.invalid>
wrote:
anchitg...@gmai l.com wrote:

[knip]
Ok, if that is supported by linux, and what about rest of the code? Is
it executing in Linux?

There are several Linux distro's which have Live-cd's. No installation is
required so you have no excuse to not try it yourself.
sorry, but i dnt knw about distro. Can you give me internet link where
I can execute it?
Jul 22 '08 #3
an********@gmai l.com writes:
Hey, I have developed the following code and it is executing well on
windows. But I don't have LINUX installed on my system. I would be
grateful to you guys if you check whether this code is working fine on
linux. I know that C++ is independent of OS, but still check it on g++
compiler.
Thanks a lot in advance.

First, you could try it on cygwin:
http://www.cygwin.com/ (it's free software)
This installs a "linux-like" environment in MS-Windows.
Then, as Gunter commented, there are linux distributions that requires
zero-installation, with so called "Live-CD": you just boot them and
they won't even write on your hard disk.
http://www.frozentech.com/content/livecd.php
Some of them even work from USB memory keys.
I'd advise you to try Kubuntu.
If you want to perfect your "unix" port, try also FreeBSD.

--
__Pascal Bourguignon__
Jul 22 '08 #4
an********@gmai l.com wrote:
On Jul 22, 12:29 pm, Gunter Schelfhout <no.m...@please .com.invalid>
wrote:
>anchitg...@gma il.com wrote:

[knip]
>>Ok, if that is supported by linux, and what about rest of the code? Is
it executing in Linux?
There are several Linux distro's which have Live-cd's. No installation is
required so you have no excuse to not try it yourself.

sorry, but i dnt knw about distro. Can you give me internet link where
I can execute it?
google

--
Ian Collins.
Jul 22 '08 #5
an********@gmai l.com wrote:
>
So, which header should I include?
Which one did Chris tell you earlier?

--
Ian Collins.
Jul 22 '08 #6
an********@gmai l.com wrote:
On Jul 22, 12:29*pm, Gunter Schelfhout <no.m...@please .com.invalid>
wrote:
>anchitg...@gma il.com wrote:

[knip]
Ok, if that is supported by linux, and what about rest of the code? Is
it executing in Linux?

There are several Linux distro's which have Live-cd's. No installation is
required so you have no excuse to not try it yourself.

sorry, but i dnt knw about distro. Can you give me internet link where
I can execute it?
A very good start about several distro's is distrowatch.com .

OpenSUSE, [K|X]Ubuntu, Mandriva, and others all have free live-cd's which
you can download and try with really no risk at all.

Jul 22 '08 #7
On Jul 22, 2:58*pm, Gunter Schelfhout <no.m...@please .com.invalid>
wrote:
anchitg...@gmai l.com wrote:
On Jul 22, 12:29*pm, Gunter Schelfhout <no.m...@please .com.invalid>
wrote:
anchitg...@gmai l.com wrote:
[knip]
Ok, if that is supported by linux, and what about rest of the code? Is
it executing in Linux?
There are several Linux distro's which have Live-cd's. No installationis
required so you have no excuse to not try it yourself.
sorry, but i dnt knw about distro. Can you give me internet link where
I can execute it?

A very good start about several distro's is distrowatch.com .

OpenSUSE, [K|X]Ubuntu, Mandriva, and others all have free live-cd's which
you can download and try with really no risk at all.
ok, so #include<cstdli bheader is doing the execution perfectly,
right?
Jul 22 '08 #8
an********@gmai l.com wrote:
But I don't have LINUX installed on my system. I would be
grateful to you guys if you check whether this code is working fine on
linux. I know that C++ is independent of OS,
_but still check it on g++ compiler_.
In *this* case, I'd like to advice you to download Dev-C++
(http://prdownloads.sourceforge.net/d....9.2_setup.exe)

and install it to C:\DevCPP ore somewhere else.

Then, start the IDE, go through (Menus)
[File] =[New] =[Project]
=[Console Application]
=Name: "anchitgood "
=Save

It'll provide a new project containing a "main.cpp".
Replace this "Hello World" example there by your
program source an hit:
[Execute] ==[Compile]

Thats it.

It has the Gnu-GCC 3.4.2 (3.4.4 after update) and
it's the *only* Win-32 development environment
(I know of) where you'll be able to install and
use the complete Boost-libraries within 60 seconds.

( goto [Tools] =[Chech for updates/Packages]
=[connect server devpaks.org]
=lookup Boost, click Download/Install )

Regards

M.
Jul 22 '08 #9
On Mon, 21 Jul 2008 20:28:31 -0700, anchitgood wrote:
Hey, I have developed the following code and it is executing well on
windows. But I don't have LINUX installed on my system. I would be
grateful to you guys if you check whether this code is working fine on
linux. I know that C++ is independent of OS, but still check it on g++
compiler.
You might first want to test-compile it on Comeau Online:

http://www.comeaucomputing.com/tryitout/

Comeau has a reputation as one of the most standards-compliant compilers
around, and you may specify an "architectu re" to compile your code under.

--
Lionel B
Jul 22 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
2897
by: walter | last post by:
I have many computers running Linux. For some reasons, the versions are not the same. Now, I want to write a C program to run on them. "Compile once and run everywhere". Is there anything I have to take care of? Thanks
4
2925
by: Rajeev | last post by:
I want to calculate the running time of my program, which runs for a long time(~ a day). This is what I am doing in my code: #include <time.h> clock_t tend, tstart; tstart = clock(); \* Body of Code *\
21
3563
by: sachin dooble | last post by:
is there any method where i can run my linux code that is all the a.out i made on linux to run on windows. plz tell me the way.
3
3039
by: Double Echo | last post by:
Hi all, I'm using PHP 4.4.2, and use PHP on both the command-line and the web. I am running PHP on SuSE 10 Linux , in a VMware 5.5 workstation, using Apache 2.0.55 , on my Dell laptop. Everything has been running flawlessly without problems. Very amazing to use VMware, it has worked beautifully. uname -a
0
1550
by: Peter Chant | last post by:
I hope no one minds me running this past them. I'm running a linux machine with with apache, php and mysql. This is not accessable from the internet. I want a server that is visable to the internet. For that purpose I am running a user mode linux machine and using apache on that as the external looking web server. This means that stuff I want to see on the outside is on a copy of apache that is doing little and does not get messed...
15
4644
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to communicate with a MySQL database table on a web server, from inside of my company's Access-VBA application. I know VBA pretty well but have never before needed to do this HTTP/XML/MySQL type functions.
4
1881
by: Stylus277 | last post by:
Hello, I am working with a client that has an old Linux server with a custom cbase program. The server has been humming along since 1989, with the exception of a HDD fail in 1994, which was replaced restored from tape. The uptime on this beast is like 12 years and counting. Just this week the last linux terminal was replaced with a new Dell running XP Pro. The client wants to keep the software but wants the space where the server fits...
9
6709
by: shorti | last post by:
db2 V8.2 I have been looking for a good way to log the 'reason code' when we hit an sqlcode that uses them. From what I can tell the reason code is stored in sqlca.sqlerrmc. But, there seems to be other information stored in this string besides the reason code. The DB2 Info Center website states that sqlca.sqlerrml identifies whether sqlerrmc contains valid data and the length of the data so I added code that would copy the content...
2
1660
by: peter | last post by:
I'm not sure if this query should be directed to comp.lang.python or comp.os.linux.misc so I intend to post it to both with apologies if it's inappropriate on either. I have a small python utility which I wrote myself and which crawls through a directory comparing all possible pairs of files. Under Windows it works fine, while the same code under Linux (Fedora Core 3) works for a while then starts continuously throwing up the following...
0
9669
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9515
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9029
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7537
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6776
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5431
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5559
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3718
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2916
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.