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 PierwszeZajecia
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string imie, nazwisko, mail;
- int wiek;
- double sredniaOcen;
- Console.Write("Podaj imię: ");
- imie = Console.ReadLine();
- Console.Write("Podaj nazwisko: ");
- nazwisko = Console.ReadLine();
- Console.Write("Podaj wiek: ");
- //wiek = int.Parse(Console.ReadLine());
- wiek = Convert.ToInt32(Console.ReadLine());
- Console.Write("Podaj średnią ocen: ");
- //sredniaOcen = double.Parse(Console.ReadLine());
- sredniaOcen = Convert.ToDouble(Console.ReadLine());
- mail = imie + "." + nazwisko + "@byd.pl";
- //Console.WriteLine("Cześć " + imie + " " + nazwisko + ", wiek: "+ wiek + " lat");
- //Console.WriteLine("Cześć {0} {1}, wiek: {2} lat",imie, nazwisko, wiek);
- Console.WriteLine($"Cześć {imie} {nazwisko}, wiek: {wiek} lat");
- Console.ReadKey(); //program zaczeka na wciśnięcie przycisku
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement