Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp1CS
- {
- class Program
- {
- static void Main(string[] args)
- {
- int x=0;
- Console.BackgroundColor = ConsoleColor.DarkMagenta;
- Console.Clear();
- Console.ForegroundColor = ConsoleColor.DarkCyan;
- Console.WriteLine("nume: ");
- string n1 = Console.ReadLine();
- Console.WriteLine("prenume: ");
- string n2 = Console.ReadLine();
- Console.WriteLine("varsta: ");
- x = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine("sall sunt {0} {1} ",n1,n2+" am "+x+" ani.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement