Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System; // Importación de namespace
- class Prueba // Declaración de clase
- {
- static int Main(string[] args) // Declaración de método
- {
- int x = 12 * 30; // Sentencia 1
- Console.WriteLine(x); // Sentencia 2
- } // Fin del método
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement