Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Funktione in c

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
24.02.2008, 16:33 Uhr
~centro
Gast


ich habe mal was ausprobiert und warum bekomme ich bei dem zweiten Wert nicht normales raus.
Wo ist mein fehler!

int produkt(int x, int y);

int main()
{
int a, b;
printf("Geben sie zwei Zahlen ein");
printf("\n");
printf("Erste Zahl:");
scanf("%i",&a);
printf("\n");
printf("Zweite Zahl:");
scanf("%i",&b);
int Ergebnis=produkt(a,b);
printf("ergebnis %i %i",Ergebnis);
return 0;
}
int produkt(int x,int y)
{
x=x+100;
y=y+100;

return y,x;
}
Also ich möcht zwei Werte einlesen und sie wiedergen seperat.Kann man das überhaupt oder
gint retrun immer nur eine Wert wieder
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
24.02.2008, 16:34 Uhr
Pler
Einer von Vielen
(Operator)


nur einen Wert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
24.02.2008, 16:35 Uhr
~centro
Gast


immer nur ein Wert
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
24.02.2008, 17:37 Uhr
öni



Ja, wenn du 2 Werte zurückgeben willst dann machste eine void Funktion und übergibts 2 Pointer und dann kannste die veränderen und wieder ausgeben.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
24.02.2008, 18:02 Uhr
~centro
Gast


void function1();


int main()
{
char Zeichen;





do
{


// Frage warum wird bei nochmaligen Aufruf die Schleife doppelt aufgerufen.

printf("Geben sie bitten eine Buchstaben ein");

scanf("%c",&Zeichen);


switch (Zeichen) {
case 'a':printf("a");break;

case 'b':printf("b");break;

case 'c':printf("c");break;

case 'd':printf("d");break;

case 'e':printf("e");break;

case 'q':function1();break;

}

}

while(Zeichen!='q');
return 0;
}

void function1()
{

printf("Good bye");
}





int Function1();
void Function2();
void Function3();
void Function4();
void Function5();
void Function6();
void Function7();












int main()
{

char Zeichen;

do
{

printf("\n");
printf("Would you like to");
printf("a.Calculate the area fo a square?\n");
printf("b.Calculate the area fo a circle?\n");
printf("c.Calculate the volume of a cube?\n");
printf("d.Calculate the volume of a sphere?\n");
printf("e.Calculate the area of an equilateral triangle?\n");
printf("q.Quit.\n");











switch (Zeichen)// Die Frage die sich stellt?Wie kommt es dazu das bei zweiten durchlauf der Schleife eine doppelte Ausgabe der printf-anweisung entseht.
{


case'a':Function1();break;
case'b':Function2();break;
case'c':Function3();break;
case'd':Function4();break;
case'e':Function5();break;
case'f':Function6();break;
case'q':Function7();break;
}



printf("Geben sie bitte ein Buchstaben zwischne a-f ein:");
scanf("%c",&Zeichen);



}
while(Zeichen!='q');




return 0;
}
int Function1(){
printf("a\n");
printf("Geben Sie den Wert ein mit dem Sie die Funktion berechnen wollen:");
int temp;
scanf("%i",&temp);
int er=temp+100;
printf("%i\n",er);

return er;
}


void Function2(){
printf("b\n");

}

void Function3(){
printf("c\n");

}

void Function4(){
printf("d\n");

}

void Function5(){
printf("e\n");

}

void Function6(){

printf("f\n");

}
void Function7(){

printf("Good bye centro");

}
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
24.02.2008, 22:46 Uhr
xXx
Devil



C++:
#include <stdio.h>

int produkt(int, int);

int main()
{
    int a, b;
    printf("Geben sie zwei Zahlen ein\nErste Zahl:");
    scanf("%i", &a);
    printf("\nZweite Zahl:");
    scanf("%i", &b);
    printf("Ergebnis: %d", produkt(a, b));
    return 0;
}

int produkt(int x, int y)
{ return x * y; }
ein Produkt => Multiplikation

Und nu zu deinem Problem:

C++:
#include <stdio.h>

void add_100_to_pair(int*, int*);

int main()
{
    int a, b;
    printf("Geben sie zwei Zahlen ein\nErste Zahl:");
    scanf("%i", &a);
    printf("\nZweite Zahl:");
    scanf("%i", &b);
    add_100_to_pair(&a, &b);
    printf("Ergebnis: %d, %d", a, b);
    return 0;
}

void add_100_to_pair(int* x, int* y)
{
    *x += 100;
    *y += 100;
}

Dieser Post wurde am 24.02.2008 um 22:46 Uhr von xXx editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: