Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _01._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