Hallo,
ich wollte das kleine 1x1 in Tabellenform ausgeben lassen dazu habe ich das geschrieben:
#include <iostream>
#include <string>
// This enables us to use all std definitions directly.
using namespace std;
void printTable()
{
for(int i=1; i <= 10, i++){
for(int j=1; j <= 10; j++){
count << (i*j) << " ";
}
count << endl;
}
int main(int argc, char* argv[])
{
printTable();
return 0;
}
Mein Compiler MiniGW zeigt mir jedoch "for(int i=1; i <= 10, i++){" bei dieser for-Schleife am Ende beim ",i++)" einen Fehler an jedoch habe ich die for-Schleife doch richtig benutzt oder?
Ebenfalls wird "count" als variable gezählt und nicht als "zählen"...
Bitte um Hilfe da ich noch ein Anfänger bin und mich das ziemlich verwirrt...
ich wollte das kleine 1x1 in Tabellenform ausgeben lassen dazu habe ich das geschrieben:
#include <iostream>
#include <string>
// This enables us to use all std definitions directly.
using namespace std;
void printTable()
{
for(int i=1; i <= 10, i++){
for(int j=1; j <= 10; j++){
count << (i*j) << " ";
}
count << endl;
}
int main(int argc, char* argv[])
{
printTable();
return 0;
}
Mein Compiler MiniGW zeigt mir jedoch "for(int i=1; i <= 10, i++){" bei dieser for-Schleife am Ende beim ",i++)" einen Fehler an jedoch habe ich die for-Schleife doch richtig benutzt oder?
Ebenfalls wird "count" als variable gezählt und nicht als "zählen"...
Bitte um Hilfe da ich noch ein Anfänger bin und mich das ziemlich verwirrt...