Bitcoin Forum
May 10, 2024, 02:22:00 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: pascal  (Read 260 times)
tarsua (OP)
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
November 17, 2015, 07:51:47 PM
 #1

find the error
Code:
Program Lesson1_program3;
Var    WriteIn

     Num1, Num2, Sum : Integer;

Begin
 Write ('Input Number 1:');
 ReadIn(Num1);
 WriteIn('Input number 2:');
 ReadIn(Num2);
 Sum:= Num1 + Num2;
 WriteIn(Sum);
 ReadIn;
End.
1715350920
Hero Member
*
Offline Offline

Posts: 1715350920

View Profile Personal Message (Offline)

Ignore
1715350920
Reply with quote  #2

1715350920
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, but full nodes are more resource-heavy, and they must do a lengthy initial syncing process. As a result, lightweight clients with somewhat less security are commonly used.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715350920
Hero Member
*
Offline Offline

Posts: 1715350920

View Profile Personal Message (Offline)

Ignore
1715350920
Reply with quote  #2

1715350920
Report to moderator
1715350920
Hero Member
*
Offline Offline

Posts: 1715350920

View Profile Personal Message (Offline)

Ignore
1715350920
Reply with quote  #2

1715350920
Report to moderator
dragansk1
Full Member
***
Offline Offline

Activity: 126
Merit: 100



View Profile
November 18, 2015, 12:02:14 AM
 #2

My favorite programming language. I like it. So I found your error.

Code:

program Lesson1_program3;
var

     Num1, Num2, Sum : integer;

begin
 Write ('Input Number 1:');
 Read(Num1);
 Write('Input number 2:');
 Read(Num2);
 Sum:= Num1 + Num2;
 Write(Sum);
 Read;
end.

Can you run it? I dont have compiler.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!