Simple Marksheet Example

#include <iostream>
int main() {
  std::cout << "Name\t\t Marks\n";
  std::cout << "Root\t\t 99"<<std::endl;
  std::cout << "Mohit\t\t 87\n";
  std::cout << "Shreyansh\t 81\n";
  std::cout << "Kritika\t\t 80\n";
  std::cout << "Prashant\t 85\n";
}
You can Fork this with the below Link:

Comments