A program that uses the pre-increment operation. : Arithmetic Operators « Language Basics « Perl

Perl
1. Array
2. CGI
3. Class
4. Data Type
5. Database
6. File
7. GUI
8. Hash
9. Language Basics
10. Network
11. Regular Expression
12. Report
13. Statement
14. String
15. Subroutine
16. System Functions
17. Win32
18. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Perl » Language Basics » Arithmetic Operators 
A program that uses the pre-increment operation.
   

#!/usr/local/bin/perl 
$value = 0
while (++$value <= 5) { 
    print("value is now $value\n")

print("all done\n")

   
    
    
  
Related examples in the same category
1. Demonstrates the difference between pre- and postincrement
2. Adding a number and a string
3. You can combine operators such as +, -, and * with the assignment operator
4. Power with **
5. Minus power
6. Float power
7. Left shift
8. After incrementing
9. After pre-increment: ++$a * 2
10. After pre-decrement
11. Using auto-increment operator for a string with digits
12. Using auto-increment operator for a string
13. Post-increment operation.
14. Operators demo: Arithmetic Operators
15. Precedence and Associativity
16. Add 3 to $var; same as $var=$var+3
17. Subtract 1 from $var
18. Square $var
19. Modulus operator
20. Arithmetic Operators in action
21. Autoincrement and Autodecrement Operators and Assignment
22. Numeric Operators
23. Use parentheses wherever possible to force precedence.
24. Remainder and power
25. To force perl to perform an operation of lower precedence first, use brackets
26. An example of exponentiation
27. %, the remainder, or 'modulo' operator
28. The autoincrement operator
29. Basic Numeric Operations
30. Increment and Decrement Operations
31. Increment and Decrement Operators
32. Basic arithmetic operators.
33. Built-in Perl Arithmetic Functions
34. Pre-increment string value
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.