|
||||||
| Pascal/Delphi Forum for discussing Borland Delphi and Pascal coding techniques, tips and tricks. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Hi! I can't do a simple program in Pascal... I need to program which change any system for example dec, hex... to other system for example binary code, but (in program) i must give this system:
begginig "Please give a system:" for example 2 "Please give second system:" for. ex. 16 "Give me a value:" 01001 "Value is..." And now it change me from binary to 16 system a value 01001. How it write? Sorrry for my English but it isn't good in computers. Thanks! |
| Sponsored Links |
|
|
|
|||||
|
First question: can you do this with a pencil and paper?
When I did this program, my strategy was go from base A to decimal to base B.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Programming is a branch of mathematics. |
|
|||
|
Uhm... no. I do it in Delphi.
Code for change a other system to binary: Code:
program NaDowolnySystem;
{$APPTYPE CONSOLE}
const
SYSTEM='0123456789ABCDEFGHIJKLMNOPRSTUWXYZ';
var
wynik:string;
NaSystem,JakaLiczba:integer;
begin
repeat
write('What system (max 34): ');
readln(NaSystem);
until NaSystem in [2..34];
write('Give value: ');
readln(JakaLiczba);
repeat
wynik:=SYSTEM[JakaLiczba mod NaSystem+1] + wynik;
JakaLiczba:=JakaLiczba div NaSystem;
until JakaLiczba=0;
writeln('Wynik: ',wynik);
readln;
end.
|
|
|||||
|
Krad, my point was that if you can't do the conversions by hand, then you will NEVER be able to program the conversions. Do you know how to do the conversions by hand?
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Programming is a branch of mathematics. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Windows XP Tricks & Tips!!!!..new ones. | pranky | Tutorials | 9 | 08-23-2008 04:22 PM |
| Operating System | prnoct90 | General Programming | 6 | 11-01-2007 11:56 PM |
| Free Account creator and Billing system | xtraze | The Lounge | 1 | 01-16-2007 03:17 PM |
| Project: vBulletin Alert System (vbAS) | Crane | Community Projects | 18 | 12-13-2006 11:54 AM |
| Store and Points System | Jordan | Announcements | 9 | 08-28-2006 02:38 PM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |