iimport java.sql.*;
import java.util.Scanner;
class InsertStudent1 {
public
static void main(String args[]) throws Exception {
Connection
con;
PreparedStatement
pstmt;
Statement
stmt;
Scanner
sc = new Scanner(System.in);
Class.forName("com.mysql.jdbc.Driver");
...