help me met C programmeren

A

armess

Guest
Hai,
kan iemand me helpen met de C programma van het omzetten van een decimaal niet in zijn hexadecimale vorm.
Indien mogelijk plz zenden van de code.

 
Firma Ozone coraz częściej gości na naszych stronach. Nie bez przyczyny, skoro cechuje ją wręcz jakobiński zapał w prowadzeniu polityki 'frontem do gracza', a jej produkty zdążyły nas przyzwyczaić do wysokiej jakości wykonania. Jak jest tym razem i czy ich najnowsze słuchawki spełniają oczekiwania? Zapraszam do recenzji słuchawek stricte gamingowyc...

Read more...
 
Heeft u geprobeerd zoeken op Google voor uw antwoord, zoeken decimaal naar hex, en vice versa, zal je vele, vele antwoorden vinden op daar.Als u betaalt me dat ik schrijf uw code.

Misschien is dit wat je nodig hebt: http://forums.dreamincode.net/showtopic14696.htm

 
hier is de code:

Code:# include <iostream>

using namespace std;int main () (

int userinputdec;

cout << "Voer een getal in decimalen:";

cin>> userinputdec;

cin.ignore ();

cout << "Het aantal in hex is:";

cout <<hex <<hoofdletters <<userinputdec <<endl;

cout << "Voer 1 af te sluiten en een andere toets om verder te gaan:";

cin>> keuze;

cin.ignore ();

)

 
void findhex (int num)
(
int d, i = 0, val;
char hex [6];
while (num)
(
d = num% 16;
if (d> = 10 & & d <= 15)
(Val = d-10;
if (val> = 0)
hex = 65 val;
)
i ;
num = num/16;
)
hex = '\ 0';
strrev (hex);
printf ( "Hexa num:% s", hex);
)hier findhex () is de gebruiker gedefinieerde functie
strrev () is std library functie omschreven in "string.h"

 

Welcome to EDABoard.com

Sponsor

Back
Top