long value calculation

In this chapter you will learn:

  1. How to calculate with long value

long value calculation

The following code computes the distance from the Earth to the sun, in inches.

using System; //from   ja  v a2 s .  co m
 
public class Inches {    
  public static void Main() {    
    long inches; 
    long miles; 
   
    miles = 93000000; // 93,000,000 miles to the sun 
 
    // 5,280 feet in a mile, 12 inches in a foot 
    inches = miles * 5280 * 12; 
   
    Console.WriteLine("Distance to the sun: " + 
                      inches + " inches."); 
   
  }    
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. ulong literal
  2. Calculate with ulong
  3. ulong format
Home » C# Tutorial » Byte, Integer, Long
Integer Family
Integer ranges
byte
Convert to byte
Parse string to byte
byte format
byte octal and hexadecimal
byte binary operation
byte overflow with unchecked
int
int value
Compare int value
int calculation
int value overflow
int binary operation
Parse string to int value
Format int value
int in binary, octal and hexadecimal
long
long value calculation
ulong