Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Student 1: Exa 100 90;Exam 2 200 186; Exam 3 100 81;Exam. 4 200 188;Project 1 50

ID: 3888016 • Letter: S

Question

Student 1: Exa 100 90;Exam 2 200 186; Exam 3 100 81;Exam. 4 200 188;Project 1 50 37: Project 2 100 80, Project 3 100 80; Project 4 200 183Quiz 1 10 10; Quiz 2 15 14: Quiz 3 10 9; Quiz 4 10 7:Quiz 5 107: Quiz 6 25 22 Student 2: Exam 1 100 93; Exam 2 200 183;Exam 3 100 86; Project 1 50 46;Project 2 100 84; Projet 100 86; Project 4 200 184; Quiz 1 10 10; uiz 215 14; Quiz 3 105: Quiz 4 10 9:Quiz 5 10 &: Quiz625 25 Student 3: Exa 100 A; Exam 2 200 190; Exam 3 100 80, Exam 4 200 181; Project 1 30 30; Project 2 100 80; Project100 8R; Project 4 2 13 10:Quiz 3 10;Quiz 10 7: Quiz 10 9; Quiz623 20 Sudent 4: Exa 100 90; Exam2 200 190; Exam 3 186; Exam 4 200 10; Project 1 50 33; Project 2 1080; Project0083; Project 4 200 1 Q 108; Quiz 2 15 14; Quiz 3 10 8; Quiz 4 10 8: Quiz50 10; Quiz 25 21 Student S: Exam 10 2; Exam 2 20C 184; Exam39 Exam 4 200 182; Project 1 50 38; Project 22; Project 3 100 82; Project 4 200 194; Quiz1 108; Quiz 25;Quiz3 0; iz 4 10 Quiz 10 10 Quiz 6 25 20 Exam 4 200 180 200 191; Quiz 1 109;Quiz :Quiz 510 0:Quiz 6 25

Explanation / Answer

*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Marksheet1
{
class Program
{
static void Main(string[] args)
{
int r, m1, m2, m3, t;
float p;
string n;
Console.WriteLine("Enter Roll Number :");
r = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter Student Name :");
n = Console.ReadLine();
Console.WriteLine("Mark of Subject1 : ");
m1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Mark of Subject2 : ");
m2 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Mark of Subject3 : ");
m3 = Convert.ToInt32(Console.ReadLine());
t = m1 + m2 + m3;
p = t / 3.0f;
Console.WriteLine("Total : " + t);
Console.WriteLine("Percentage : " + p);
if (p >= 35 && p < 50)
{
Console.WriteLine("Grade is C");
}
if (p >= 50 && p <= 60)
{
Console.WriteLine("Grade is B");
}
if (p > 60 && p <= 80)
{
Console.WriteLine("Grade is A");
}
if (p > 80 && p <= 100)
{
Console.WriteLine("Grade is A+");
}
Console.ReadLine();
}
}
}