Advertisement
Fhernd

ConversionUnidades.cs

Sep 29th, 2014
1,068
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. class ConversionUnidades
  2. {
  3.     public static void main()
  4.     {
  5.         int milimetros = 5;
  6.         int centimetros = 10;
  7.  
  8.         // suma de unidades
  9.         int suma = milimetros + centimetros;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement