Forum

> > Off Topic > Brauche Hilfe für mathematische Operation
Forums overviewOff Topic overviewLog in to reply

German Brauche Hilfe für mathematische Operation

4 replies
To the start Previous 1 Next To the start

old Brauche Hilfe für mathematische Operation

Kayren
User Off Offline

Quote
Hallo Leutz, ich brauche Hilfe bei einer mathematischen Opperation von der ich den Quelltext habe, aber nicht weiss, ob es nun + - * oder / ist. (Vielleicht bin ich auch etwas zu dumm dafür )
1
2
3
4
5
6
7
8
9
10
if(a!=0 ¦¦ b!=0){
	c=a+b;
}else{
	if(a==0 && b==0)
	{
		c=a+b;
	}else{
		d=a+b;
	}
}
Jede Hilfe ist willkommen cookie

old Re: Brauche Hilfe für mathematische Operation

Nova
User Off Offline

Quote
Auf den ersten Blick Addition.

Welche Sprache ist das denn? PHP? C?

Der Code ist allerdings nutzlos. Du kannst auch gleich "c = a+b;" schreiben, das hat den selben Effekt.
edited 1×, last 18.11.09 03:00:47 pm

old Re: Brauche Hilfe für mathematische Operation

Diego
User Off Offline

Quote
Was soll die Funktion den genau machen? Weil so ergibt es eher weniger Sinn:

1. Wenn a und b nicht gleich 0 sind
     ist c die Addition aus a und b
2. Wenn a und b gleich 0 sind
     ist c auch die Addition aus a und b
3. Wenn das nicht zutrifft
     ist d die Addition aus a und b
(Was allerdings logischerweise nicht sein kann, da sich das ja dann mit den beiden anderen schneidet.)
edited 1×, last 18.11.09 03:05:17 pm

old Re: Brauche Hilfe für mathematische Operation

Nova
User Off Offline

Quote
Sowohl BlitzBasic als auch C++ sehen negative Zahlen als nicht 0 an.
Von daher ist das Ergebnis immer die Addition von a und b gespeichert in c.

Oh, hast es wohl noch gerade wegeditiert als ich schreiben wollte Diego, oder?
To the start Previous 1 Next To the start
Log in to replyOff Topic overviewForums overview