60 lines
2.9 KiB
HTML
60 lines
2.9 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>WhatsYourName.java</title>
|
||
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||
|
<style type="text/css">
|
||
|
<!--
|
||
|
body {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
|
||
|
pre {color: #a9b7c6; background-color: #2b2b2b; font-family: monospace}
|
||
|
table {color: #888888; background-color: #313335; font-family: monospace}
|
||
|
.ST1 {color: #808080; font-family: monospace; font-weight: bold}
|
||
|
.comment {color: #808080}
|
||
|
.whitespace {color: #505050}
|
||
|
.ST2 {color: #ffc66d; font-family: monospace; font-style: italic}
|
||
|
.ST3 {color: #9876aa; font-family: monospace; font-style: italic}
|
||
|
.string {color: #6a8759}
|
||
|
.ST0 {color: #287bde}
|
||
|
.literal {color: #cc7832}
|
||
|
-->
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table width="100%"><tr><td align="center">/home/caleb/NetBeansProjects/ADSV Java/lab5_CalebFontenot/src/main/java/com/calebfontenot/lab5_calebfontenot/WhatsYourName.java</td></tr></table>
|
||
|
<pre>
|
||
|
<span class="comment">/*</span>
|
||
|
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt</span><span class="comment"> to change this license</span>
|
||
|
<span class="comment"> * Click </span><span class="ST0">nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java</span><span class="comment"> to edit this template</span>
|
||
|
<span class="comment"> */</span>
|
||
|
<span class="literal">package</span> com.calebfontenot.lab5_calebfontenot;
|
||
|
|
||
|
<span class="literal">import</span> java.util.Scanner;
|
||
|
|
||
|
<span class="comment">/**</span>
|
||
|
<span class="comment"> *</span>
|
||
|
<span class="comment"> * </span><span class="ST1">@author</span> <span class="comment">caleb</span>
|
||
|
<span class="comment">*/</span>
|
||
|
<span class="literal">public</span> <span class="literal">class</span> WhatsYourName {
|
||
|
<span class="literal">public</span> <span class="literal">static</span> <span class="literal">void</span> <span class="ST2">main</span>(String[] args)
|
||
|
{
|
||
|
<span class="comment">// Create Scanner</span>
|
||
|
Scanner input = <span class="literal">new</span> Scanner(System.<span class="ST3">in</span>);
|
||
|
|
||
|
<span class="comment">// Declare vars</span>
|
||
|
String firstName,
|
||
|
lastName;
|
||
|
|
||
|
<span class="comment">// Prompt for input</span>
|
||
|
System.<span class="ST3">out</span>.print(<span class="string">"</span><span class="string">What's your name? (Enter first and last) </span><span class="string">"</span>);
|
||
|
firstName = input.next();
|
||
|
lastName = input.next();
|
||
|
|
||
|
<span class="comment">// Print output</span>
|
||
|
System.<span class="ST3">out</span>.println(firstName + <span class="string">"</span> <span class="string">"</span> + lastName + <span class="string">"</span><span class="string"> is a beautiful name!</span><span class="string">"</span>);
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</pre></body>
|
||
|
</html>
|