VelizarAvramov

01. Student Information

Dec 16th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _01._Student_Information
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string name = Console.ReadLine();
  10.             int age = int.Parse(Console.ReadLine());
  11.             double grade = double.Parse(Console.ReadLine());
  12.  
  13.             Console.WriteLine($"Name: {name}, Age: {age}, Grade: {grade:f2}");
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment