Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: Quersummefunktion von Delphi nach C?
5. Apr 2011, 17:17
Du brauchst eine interne Variable und am Schluss machst du ein return xyz.
Code:
int QuerSumme(int x)
{
int tmp
while (x!=0)
{
tmp += x % 10;
x /= 10;
}
return tmp;
}
War gerad einfach mal so runtergecodet -- auf Richtigkeit prüfen!
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
Geändert von s.h.a.r.k ( 5. Apr 2011 um 17:20 Uhr)
|