Skip to content

Instantly share code, notes, and snippets.

View AkshayJohn-11's full-sized avatar

AkshayJohn-11

View GitHub Profile
@AkshayJohn-11
AkshayJohn-11 / Calc.java
Created October 29, 2025 02:22 — forked from DaveGu/Calc.java
Simple calculator in Java
import java.util.*
//Simple calculator
public class calc
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
double a, b, c = 0.0;