I wanted to write up some code to be able to calculate my Net-worth as I was getting tired of doing it manually. You have to enter the values for each questions and it calculates the sum at the end. Below is the code and it works and it can be modified to suite your needs. Enjoy

import java.util.Scanner;
class networth {

	public static void main(String[] args) {
		System.out.println("NetWorth Calculator");
		int a, b, c, d, e, f, g, h, i, sum;
		Scanner myObj = new Scanner(System.in);
		System.out.println("Type in your total liquid cash:");
		a = myObj.nextInt();
		
		System.out.println("Type in your total super/401k:");
		b = myObj.nextInt();
		
		System.out.println("Type in your total value of shares:");
		c = myObj.nextInt();
		
		System.out.println("Type in your total market value of your house(s):");
		d = myObj.nextInt();
		
		System.out.println("Type in your total market value of vehicle 1:");
		e = myObj.nextInt();
		
		System.out.println("Type in your total market value of vehicle 2:");
		f = myObj.nextInt();
		
		System.out.println("Type in your total market value of vehicle 3:");
		g = myObj.nextInt();
		
		System.out.println("Type in your total value of crypto:");
		h = myObj.nextInt();
		
		System.out.println("Type in your total debt including mortgage,credit card debt:");
		i = myObj.nextInt();
		
		sum = a + b + c + d + e + f + g + h - i;
		System.out.println("You Total Networth is: "+ sum);
		
	}
}
		
		

By Kad