000
26.11.2006, 11:36 Uhr
Compiler
|
Hi Leute,
Bin neu hir und bin erst seit 1Woche an C++ Programmieren lernen!
Ich möchte einem Rechner in der Konsolen anwendug machen, bei dem man den Operator eingeben kann, Wie gesagt, ich habe noch keine Ahnung von C++ Und habe schon mal das hr! BITTE UM HILFE!!!
C++: |
#include <iostream> #include <conio.h> #include <string>
using namespace std;
int main() { strint operator; float zahl1, zahl2, resultat; cout<<"Gib eine Zahl ein"<<endl; cin>>zahl1; cout<<"Gib noch eine Zahl ein!"<<endl; cin>>zahl2; cout<<"Gib den Operator ein! Minus=a Plus=b Multiplikation=c Division=d"<<endl; cin>>operator; operator = a = -; operator = b = +; operator = c = *; operator = d = :;
|
Dieser Post wurde am 26.11.2006 um 13:03 Uhr von Windalf editiert. |