There was an error while loading. Please reload this page. A simple calculator application built using Java Swing for the graphical user interface (GUI). This project ...
import java.util.*; class Student{ String name; int rollNo; int marks[]; Student(String n,int roll,int marks[]) { this.name=n; this.rollNo=roll; this.marks = marks ...