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 _1.Student_Information
- {
- class Program
- {
- static void Main(string[] args)
- {
- string Name = Console.ReadLine();
- int Age = int.Parse(Console.ReadLine());
- double Grade = double.Parse(Console.ReadLine());
- Console.WriteLine($"Name: {Name}, Age: {Age}, Grade: {Grade:f2}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment