|
||||||
| 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 |
|
|
|
|||
|
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?
__________________
To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts. Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall |
![]() |
| 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 03:22 PM |
| Operating System | prnoct90 | General Programming | 6 | 11-01-2007 10:56 PM |
| Free Account creator and Billing system | xtraze | The Lounge | 1 | 01-16-2007 02:17 PM |
| Project: vBulletin Alert System (vbAS) | Crane | Community Projects | 18 | 12-13-2006 10:54 AM |
| Store and Points System | Jordan | Announcements | 9 | 08-28-2006 01:38 PM |
| Xav | ........ | 1276.19 |
| MeTh0Dz|Reb0rn | ........ | 1048.58 |
| marwex89 | ........ | 869.98 |
| John | ........ | 868.39 |
| morefood2001 | ........ | 868.04 |
| WingedPanther | ........ | 761.06 |
| Brandon W | ........ | 684.87 |
| chili5 | ........ | 294.12 |
| Steve.L | ........ | 216.18 |
| dargueta | ........ | 192.86 |
Goal: 100,000 Posts
Complete: 81%