Spiderman 3 PC Game Free Download

Spider-Man 3 is an action game loosely based on the Spider-Man 3 film and released for the Xbox 360, PlayStation 3, PlayStation 2, Wii, PlayStation Portable, Nintendo DS, Microsoft Windows and Game Boy Advance. The Xbox 360 and PS3 versions were developed by Treyarch, the PC version by Beenox while the other versions were developed by Vicarious Visions. The game's plot expands on the film by including additional characters and elements from the Spider-Man comics and the Marvel Universe. Depending on the platform,..

Read More

Please leave a comment If you found BROKEN LINK OK, thanks for visit my website,...!!!

Shooter Game Chrome PC Free Download Shooter Game Angels Fall First: Planetstorm PC Download Harvest Moon - Back To Nature PC Game Download Download PC Game TMNT 2 : Battle Nexus RIP MediaFire Prince Of Persia Warrior Within Download PC Game Resident Evil 2 img 1 metal slug super vehicle Devil May Cry 3 Portable Cool Game Download

Search


Tampilkan postingan dengan label Pascal Language. Tampilkan semua postingan
Tampilkan postingan dengan label Pascal Language. Tampilkan semua postingan

Program Arithmetic Operations


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Program InputOutput;
uses crt;
var x,y,sum : integer;
begin
Clrscr;
{Entering values into variables x and y}
write(‘Input First Number : ‘);
Readln(x);
write(‘Input Second Number : ‘);
Readln(y);
writeln;
{Perform arithmetic operations with respect to x and y}
writeln(‘x + y = ‘, x + y);
writeln(‘x - y = ‘, x - y);
writeln(‘x * y = ‘, x * y);
writeln(‘x / y = ‘, x / y) : 0 : 3);
writeln(‘x div y = ‘, x div y);
writeln(‘x mod y = ‘, x mod y);
Readln ;
End.

If the above program code at compile and run the results will be displayed like this :
Output Program :
Input First Number : 10
Input Second Number : 3

x + y = 13
x + y = 7
x + y = 30
x + y = 3.333
x + y = 3
x + y = 1


Program Show Name

Program Code :
1
2
3
4
5
6
7
8
9
10
Program InputOutput;
uses crt;
var name : string[25];
begin
Clrscr;
write(‘Input Your Name : ‘);
Readln(name);
writeln(‘Youre Name Is ’,name);
Readln ;
End.

Explanation Program:
Line 1    : Indicates that this program has the title First
Line 2    : Indicates that this program uses crt unit
Line 3    :  Declaring variables with the type name string length is 25 characters maximum
Line 4    : Starting the main program block
Line 5    : Clean the monitor screen of the texts that have previously
Line 6    : Shows the information to ask the user to enter their name and position of the cursor is behind the text
Line 7    :  Reading data entered by the user and store it into variable names
Line 8    :  Displays the value contained in the variable name and the position of the cursor will be on the next line
Line 7    : Waiting for the user presses the button
Line 8    : End the program

If the above program code at compile and run the results will be displayed like this :

Output Program :
Input Your Name : Michael
Your Name Is Michael

Simple Program


Program Code :
1
2
3
4
5
6
7

Program First;
uses crt;
begin
                Clrscr;
                Writeln(‘Welcome in Pascal World’);
                Readln ;
End.

Explanation Program:
Line 1    : Indicates that this program has the title First
Line 2    : Indicates that this program uses crt unit
Line 3    : Starting the main program block
Line 4    : Clean the monitor screen of the texts that have previously
Line 5    : Displaying text in Pascal World Welcome and position the cursor on the next line
Line 6    : Waiting for the user presses the button
Line 7    : End the program

If the above program code at compile and run the results will be displayed like this :
Output Program :
Welcome in Pascal World