Advertisement
Fhernd

Prueba.cs

Apr 19th, 2017
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using System;                   // Importación de namespace
  2.  
  3. class Prueba                    // Declaración de clase
  4. {
  5.     static int Main(string[] args)          // Declaración de método
  6.     {
  7.         int x = 12 * 30;        // Sentencia 1
  8.         Console.WriteLine(x);   // Sentencia 2
  9.     }                           // Fin del método
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement