cmk
Benutzertitel:
Hab mal nen kleinen taschenrechner gemacht!
/***************************************************************************
main.cpp - description
-------------------
begin : Sun Oct 27 20:24:46 UTC 2002
copyright : (C) 2002 by
email :
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream.h>
#include <stdlib.h>
int main()
{
cout << "############# FUSEL CALC 0.0.3 #############\n\n\n";
int a,c,b;
char d;
cout << "ENTER A NUMER: ";
cin >> a;
cout << "ENTER ANOTHER ONE: ";
cin >> b;
cout << "CHOOSE A KIND OF CALCULATION: ";
cin >> d;
switch (d)
{
case '+': c = a + b; break;
case '-': c = a - b; break;
case '*': c = a * b; break;
case '/': c = a / b; break;
}
cout << "-----------------------------\n\n\n";
cout << "FOLGENDE BERECHNUNG WURDE DURCHGEFÜHRT: \n\n";
cout << a;
cout << " ";
cout << d;
cout << " ";
cout << b;
cout << "\n\n\n";
cout << "RESULT: ";
cout << c;
cout << "\n\n\n\n\n";
return 0;
}
viel spass damit
wir könne es ja so machen, dass jeder eine kleine verbesserung hinzufügt dann reichen wir den taschenrechner bei suse ein - schreiben ins ccopyright die url von unixboard und hier sind schlagartig 38729034120 members
/***************************************************************************
main.cpp - description
-------------------
begin : Sun Oct 27 20:24:46 UTC 2002
copyright : (C) 2002 by
email :
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream.h>
#include <stdlib.h>
int main()
{
cout << "############# FUSEL CALC 0.0.3 #############\n\n\n";
int a,c,b;
char d;
cout << "ENTER A NUMER: ";
cin >> a;
cout << "ENTER ANOTHER ONE: ";
cin >> b;
cout << "CHOOSE A KIND OF CALCULATION: ";
cin >> d;
switch (d)
{
case '+': c = a + b; break;
case '-': c = a - b; break;
case '*': c = a * b; break;
case '/': c = a / b; break;
}
cout << "-----------------------------\n\n\n";
cout << "FOLGENDE BERECHNUNG WURDE DURCHGEFÜHRT: \n\n";
cout << a;
cout << " ";
cout << d;
cout << " ";
cout << b;
cout << "\n\n\n";
cout << "RESULT: ";
cout << c;
cout << "\n\n\n\n\n";
return 0;
}
viel spass damit
wir könne es ja so machen, dass jeder eine kleine verbesserung hinzufügt dann reichen wir den taschenrechner bei suse ein - schreiben ins ccopyright die url von unixboard und hier sind schlagartig 38729034120 members