Computer Sciences

This blog gives you informations about internet, programming and computing news...

vendredi 1 juillet 2016

PASCAL - Lesson 3

08:55
PROGRAMMING PASCAL LESSON 2 Now we will focus on operations and strings We will learn also IF statement Let's start We will make a calculator using Pascal IF statement looks like this if -condition- then begin      operations... end; But if there is many conditions it will look like this if -condition- then begin  ...

Pascal - Lesson 2

08:16
PROGRAMMING PASCAL LESSON 2 In this lesson we will learn variables integer; real; char; string... Example: Integer: 25 4 -2 3 85 Real: 120.36 -9.66 45.12 Char: A B C D E f g h i j k l String: PASCAL programming Hello we put variables...

Pascal - Lesson 1

07:46
PROGRAMMING PASCAL LESSON 1 We will begin with simple programs. We begin with 'Hello World' program. As any languages has rules, grammar, syntax... Pascal has his own rules and you should obey it. The program name we write (program myfirstprog)we use begin in the program beginning and end on its endingbut before that we write uses...