Java

Student MarksCalculation System Using Java

This tutorial will teach you Student MarksCalculation System Using Java.Input the studentname and marks to calculating the total,grade. the grade is awared as “Pass” when the average is more than 50.otherwise grade is fail.

paste the code inside the ok button

 int num1,num2,num3,tot,avg;
        
        num1 = Integer.parseInt(txtnum1.getText());
        num2 = Integer.parseInt(txtnum2.getText());
        num3 = Integer.parseInt(txtnum3.getText());
        
        tot = num1 + num2 + num3;
        
        avg = tot/3;
        
        txttot.setText(String.valueOf(tot));
        txtavg.setText(String.valueOf(avg));
        
        if(avg > 50)
        {
            JOptionPane.showMessageDialog(null,"Pass");
        }
        else
        {
            JOptionPane.showMessageDialog(null,"fail");
            
        }

i have attached the video link below. which will do this tutorials step by step.

admin

Recent Posts

Chat with Claude AI Free – Your Super-Smart AI Buddy

It's like having a super-smart buddy that is always there to help you write stories,…

1 day ago

Best Festivals UK 2025 [Free Guide Included]

The UK is known for its rich history, diverse culture, and most of all  its…

4 days ago

Bank Holidays 2025 UK – Plan Your Perfect Long Weekends

Do you have a plan for your next holiday? Being aware of the Bank Holidays within the…

4 days ago

Master Cursor AI Full Guide for Students & Creators

The world is rapidly changing of software development AI-assisted tools for coding have become the main focus. As…

5 days ago

Google Gemini AI Free AI Tool for Students & Creators

Google Gemini AI is among the top talked about developments. What exactly is it? What…

6 days ago

Top 5 Reasons You Should Use Grubby AI Humanizer in 2025

As the need for AI content undetectable humanization software skyrockets with more and more AI…

1 week ago