Thursday 2 June 2016

Membuat Program mencari luas lingkaran di Pascal

Contoh program mencari luas lingkaran menggunakan Pascal:

 

Program mencari_luas_lingkaran;

uses wincrt;

const pi=3.14;
var
luas,jari : real;
begin
writeln('masukan Jari jari dari sebuah lingkaran : ');
readln(jari);
luas:=3.14*jari*jari;
writeln('maka hasil dari ',pi,' x ',jari,' x ',jari,' = ',luas:9:0);
end.


Share:

How to compose a successful critical commentary :

1.     You should attempt to re-express your target’s position so clearly, vividly, and fairly that your  target says, “Thanks, I wish I’d thought of putting it that way. 
2.     You should list any points of agreement (especially if they are not matters of general or widespread agreement).
3.     You should mention anything you have learned from your target
4.     Only then are you permitted to say so much as a word of rebuttal or criticism.

If only the same code of conduct could be applied to critical commentary online, particularly to the indelible inferno of comments.

Share:

Labels

Kategori