Hallo, ik ben net begonnen met c++ en dit is mijn derde scriptje gewoon simpel optellen afrekken en keer maar ik krijg een paar errors (Het script zal waarschijnlijk wel slordig enzo voor jullie zijn maar daar werk ik later wel aan)
#include <iostream>
using namespace std;
int main()
{
int a,b,c,pmk;
cout <<("Getal A is ?") <<endl;
cin >> a;
cout <<("Getal B is ?") <<endl;
cin >> b;
cout <<("Getal C is ?") <<endl;
cin >> c;
cout <<(" ") <<endl;
cout <<("Ok wat wil je nu doen met die 3 getallen ?") <<endl;
cout <<("Wil je Plus, Min, of Keer ?") <<endl;
cin >> pmk;
cout <<(" ") <<endl;
if (pmk == plus) {
cout <<("Ok je heb Plus gekozen de getallen worden nu bij elkaar opgeteld") endl;
cout << a << "+" << b << "+" << c << "=" <<endl; }
if else (pmk == min) {
cout <<("Ok je heb Min gekozen de getallen worden nu van elkaar afgetrokken") endl;
cout << a << "-" << b << "-" << c << "=" << endl; }
else (pmk == keer) {
cout <<("Ok je heb Keer gekozen de uitkomst word uitkerekend") endl;
cout << a << "x" << b << "x" << c << "=" << endl; }
cout <<(" ") <<endl;
cout <<("Bedankt !") endl;
cout <<(" ") <<endl;
system ("pause");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a,b,c,pmk;
cout <<("Getal A is ?")<<endl;
cin >> a;
cout <<("Getal B is ?")<<endl;
cin >> b;
cout <<("Getal C is ?")<<endl;
cin >> c;
cout <<(" ")<<endl;
cout <<("Ok wat wil je nu doen met die 3 getallen ?")<<endl;
cout <<("Wil je Plus, Min, of Keer ?")<<endl;
cin >> pmk;
cout <<(" ")<<endl;
if(pmk == plus){
cout <<("Ok je heb Plus gekozen de getallen worden nu bij elkaar opgeteld") endl;
-------------- Build: Debug in Input Output en If ---------------
Compiling: main.cpp
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp: In function `int main()':
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:26: error: missing template arguments before ')' token
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:27: error: expected `;' before "endl"
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:30: error: expected `(' before "else"
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:34: error: expected primary-expression before "else"
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:34: error: expected `;' before "else"
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:40: error: expected `;' before "endl"
Process terminated with status 1 (0 minutes, 0 seconds)
6 errors, 0 warnings
-------------- Build: Debug in Input Output en If---------------
Compiling: main.cpp
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp: In function `int main()':
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:26: error: missing template arguments before ')' token
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:27: error: expected `;' before "endl"
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:30: error: expected `(' before "else"
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:34: error: expected primary-expression before "else"
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:34: error: expected `;' before "else"
C:\Documents and Settings\MeLL1eJ\Mijn documenten\Code-Blocks C++ Projects\Input en Output\main.cpp:40: error: expected `;' before "endl"
Process terminated with status 1 (0 minutes, 0 seconds)
<?php // kleurtje
#include <iostream>
using namespace std;
int main()
{
int a, b, c, pmk;
cout << "Getal A is ?" << endl;
cin >> a;
cout << "Getal B is ?" << endl;
cin >> b;
cout << "Getal C is ?" << endl;
cin >> c;
cout << " " <<endl;
cout << "Ok wat wil je nu doen met die 3 getallen ?" << endl;
cout << "Wil je Plus, Min, of Keer ?" << endl;
cin >> pmk;
cout << " " << endl;
if (pmk == 1) { // plus
cout << "Ok je heb Plus gekozen de getallen worden nu bij elkaar opgeteld" << endl;
cout << a << "+" << b << "+" << c << "=" << endl;
} elseif (pmk == 2) { // min
cout << "Ok je heb Min gekozen de getallen worden nu van elkaar afgetrokken" << endl;
cout << a << "-" << b << "-" << c << "=" << endl;
} elseif (pmk == 3) { // maal of keer
cout << "Ok je heb Keer gekozen de uitkomst word uitkerekend" << endl;
cout << a << "x" << b << "x" << c << "=" << endl;
}
cout << " " << endl;
cout << "Bedankt !" << endl;
cout << " " << endl;
cin.get(); /* system pause is wat anders en zou ik niet gebruiken wacht gewoon op de gebruiker dat hij enter indrukt en dan verder gaat en dan sluit het programma vanzelf wel. */
return 0;
}
<?php// kleurtje
#include <iostream>
using namespace std;
int main()
{
int a, b, c, pmk;
cout <<"Getal A is ?"<< endl;
cin >> a;
cout <<"Getal B is ?"<< endl;
cin >> b;
cout <<"Getal C is ?"<< endl;
cin >> c;
cout <<" "<<endl;
cout <<"Ok wat wil je nu doen met die 3 getallen ?"<< endl;
cout <<"Wil je Plus, Min, of Keer ?"<< endl;
cin >> pmk;
cout <<" "<< endl;
if(pmk ==1){// plus
cout <<"Ok je heb Plus gekozen de getallen worden nu bij elkaar opgeteld"<< endl;
cout << a <<"+"<< b <<"+"<< c <<"="<< endl;
}elseif(pmk ==2){// min
cout <<"Ok je heb Min gekozen de getallen worden nu van elkaar afgetrokken"<< endl;
cout << a <<"-"<< b <<"-"<< c <<"="<< endl;
}elseif(pmk ==3){// maal of keer
cout <<"Ok je heb Keer gekozen de uitkomst word uitkerekend"<< endl;
cout << a <<"x"<< b <<"x"<< c <<"="<< endl;
}
cout <<" "<< endl;
cout <<"Bedankt !"<< endl;
cout <<" "<< endl;
cin.get();/* system pause is wat anders en zou ik niet gebruiken wacht gewoon op de gebruiker dat hij enter indrukt en dan verder gaat en dan sluit het programma vanzelf wel. */
return0;
}
Edit
@ikkedikke: dat verwekt juist weer errors en volgens mij zit hij/zij nog niet aan hoofdstuk "Werken met strings" ofzoiets dergelijks, integer variablen worden hier gebruikt.
<?php // kleurtje
#include <iostream>
using namespace std;
int main()
{
int a, b, c, pmk;
cout << "Getal A is ?" << endl;
cin >> a;
cout << "Getal B is ?" << endl;
cin >> b;
cout << "Getal C is ?" << endl;
cin >> c;
cout << " " <<endl;
cout << "Ok wat wil je nu doen met die 3 getallen ?" << endl;
cout << "Wil je Plus, Min, of Keer ?" << endl;
cin >> pmk;
cout << " " << endl;
if (pmk == 1) { // plus
cout << "Ok je heb Plus gekozen de getallen worden nu bij elkaar opgeteld" << endl;
cout << a << "+" << b << "+" << c << "=" << endl;
} else if (pmk == 2) { // min
cout << "Ok je heb Min gekozen de getallen worden nu van elkaar afgetrokken" << endl;
cout << a << "-" << b << "-" << c << "=" << endl;
} else if (pmk == 3) { // maal of keer
cout << "Ok je heb Keer gekozen de uitkomst word uitkerekend" << endl;
cout << a << "x" << b << "x" << c << "=" << endl;
}
cout << " " << endl;
cout << "Bedankt !" << endl;
cout << " " << endl;
cin.get();
return 0;
}
<?php// kleurtje
#include <iostream>
using namespace std;
int main()
{
int a, b, c, pmk;
cout <<"Getal A is ?"<< endl;
cin >> a;
cout <<"Getal B is ?"<< endl;
cin >> b;
cout <<"Getal C is ?"<< endl;
cin >> c;
cout <<" "<<endl;
cout <<"Ok wat wil je nu doen met die 3 getallen ?"<< endl;
cout <<"Wil je Plus, Min, of Keer ?"<< endl;
cin >> pmk;
cout <<" "<< endl;
if(pmk ==1){// plus
cout <<"Ok je heb Plus gekozen de getallen worden nu bij elkaar opgeteld"<< endl;
cout << a <<"+"<< b <<"+"<< c <<"="<< endl;
}elseif(pmk ==2){// min
cout <<"Ok je heb Min gekozen de getallen worden nu van elkaar afgetrokken"<< endl;
cout << a <<"-"<< b <<"-"<< c <<"="<< endl;
}elseif(pmk ==3){// maal of keer
cout <<"Ok je heb Keer gekozen de uitkomst word uitkerekend"<< endl;
<?php // kleurtje
#include <iostream>
using namespace std;
int main()
{
int a, b, c, d, pmk;
cout << "Getal A is ?" << endl;
cin >> a;
cout << "Getal B is ?" << endl;
cin >> b;
cout << "Getal C is ?" << endl;
cin >> c;
cout << " " <<endl;
cout << "Ok wat wil je nu doen met die 3 getallen ?" << endl;
cout << "Wil je Plus, Min, of Keer ?" << endl;
cin >> pmk;
cout << " " << endl;
if (pmk == 1) { // plus
cout << "Ok je heb Plus gekozen de getallen worden nu bij elkaar opgeteld" << endl;
d = a + b + c;
cout << a << "+" << b << "+" << c << "=" << d << endl;
} else if (pmk == 2) { // min
cout << "Ok je heb Min gekozen de getallen worden nu van elkaar afgetrokken" << endl;
d = a - b - c;
cout << a << "-" << b << "-" << c << "=" << d << endl;
} else if (pmk == 3) { // maal of keer
cout << "Ok je heb Keer gekozen de uitkomst word uitkerekend" << endl;
d = a * b * c
cout << a << "x" << b << "x" << c << "=" << d << endl;
}
cout << " " << endl;
cout << "Bedankt !" << endl;
cout << " " << endl;
cin.get();
return 0;
}
<?php// kleurtje
#include <iostream>
using namespace std;
int main()
{
int a, b, c, d, pmk;
cout <<"Getal A is ?"<< endl;
cin >> a;
cout <<"Getal B is ?"<< endl;
cin >> b;
cout <<"Getal C is ?"<< endl;
cin >> c;
cout <<" "<<endl;
cout <<"Ok wat wil je nu doen met die 3 getallen ?"<< endl;
cout <<"Wil je Plus, Min, of Keer ?"<< endl;
cin >> pmk;
cout <<" "<< endl;
if(pmk ==1){// plus
cout <<"Ok je heb Plus gekozen de getallen worden nu bij elkaar opgeteld"<< endl;
d = a + b + c;
cout << a <<"+"<< b <<"+"<< c <<"="<< d << endl;
}elseif(pmk ==2){// min
cout <<"Ok je heb Min gekozen de getallen worden nu van elkaar afgetrokken"<< endl;
d = a - b - c;
cout << a <<"-"<< b <<"-"<< c <<"="<< d << endl;
}elseif(pmk ==3){// maal of keer
cout <<"Ok je heb Keer gekozen de uitkomst word uitkerekend"<< endl;