Advertisement
bukuFlash

flashAs3

Dec 26th, 2018
1,331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var jumlah:Number = 10;
  2. var harga:Number = 25;
  3.  
  4. trace("jumlah: " + jumlah);
  5. trace("harga: " + harga);
  6. trace("Total: " + harga * jumlah);
  7.  
  8. jumlah = 7;
  9. harga = 50;
  10.  
  11. trace("Nilai telah dirubah");
  12. trace("Jumlah sekarang: " + jumlah);
  13. trace("Harga baru: " + harga);
  14. trace("TOTAL: " + harga * jumlah);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement