/* * This is the second project created as a class example * started on 8 Sep 2016 */ package secondfall168sep; import java.util.Scanner; /** * * @author jcmtiernan */ public class SecondFall168Sep { /** * @param args the command line arguments */ public static void main(String[] args) { int teams_in_NTX = 70; // declaration with initialization of 0 final int regionsInNorthTexas = 4; double scoreInOneGame = 88.5; double oneScore = 10; int classNumber = 1310; int s7 = 4; Scanner input = new Scanner(System.in); String fcWelcome = new String("Welcome to the Future City competition"); String fcWelcome2 = "Welcome to the Future City competition"; System.out.println(fcWelcome2); oneScore = 72; oneScore = 72 * 2; oneScore = oneScore /7; //regionsInNorthTexas = 5; System.out.printf("Number of teams *%8o",teams_in_NTX); System.out.printf(" current score is %E",scoreInOneGame); System.out.printf(" and one score is *%.3f \n",oneScore); } }