1. 程式人生 > >第十四章 上機練習1

第十四章 上機練習1

//上機練習1
import java.util.Scanner;

public class Qing4 {
	String[] names = new String[10];

	public void addName(String name) {
		for (int i = 0; i < names.length; i++) {
			if (names[i] == null) {
				names[i] = name;
				break;

			}
		}
	}

	public void showNames() {
		System.out.println("******************");
		System.out.println("客戶姓名列表:");
		for (int i = 0; i < names.length; i++) {
			System.out.println(names[i]);
		}

	}
	public static void main(String[] args) {
		Qing4 st = new Qing4();
		Scanner input = new Scanner(System.in);

		boolean a = true;
		while (a) {

			System.out.println("請輸入客戶姓名:");
			String newName = input.next();
			st.addName(newName);
			System.out.println("繼續輸入嗎?(y/n)");
			String jixu = input.next();
			if (jixu.equals("y")) {
				a = false;

			}

		}
		st.showNames();
	}
}

相關推薦

上機練習1

//上機練習1 import java.util.Scanner; public class Qing4 { String[] names = new String[10]; public void addName(String name) { for (int

程式設計練習(1)

程式設計練習1 //winec.h #ifndef WINEC_H_ #define WINEC_H_ #include <iostream> #include <string> #include <valarray>

C# 上機1-5

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.Sql

ACCP S1 C# 上機練習

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.Sql

S2 第一本書 上機練習1-4

--------上機練習1------ select max(StudentResult),min(StudentResult) from result where examdate= ( se

C# 上機練習1

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T

上機練習1

package sll1; import java.util.Scanner; public class shangji11 { Scanner input = new Scanner(Syst

上機練習3

//上機練習3 import java.util.Scanner; public class MM { public int show(String input,String word){ int count=0; for(int i=0;i<=in

T-SQL 上機連線資料庫

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.Sql

上機練習2

package shisi14; import java.util.Scanner; public class shangji2 { Scanner input=new Scanner(System

上機練習

import java.util.*; public class Goods { String[] goods=new String[]{"電風扇","洗衣機","電視機","冰箱","空調機"}; double[] price=new double[]{1

Java語言程式設計 (14.1、14.2、14.3、14.4、12.5、14.6)

程式小白,希望和大家多交流,共同學習 因為沒有第十版的漢語電子書,(有的漢語版是第八版,使用的還是Swing)這部分內容只能使用英語版截圖。 14.1 //將image資料夾中的照片加載出來 import javafx.application.

C Primer Plus六版 程式設計練習

1. #include <stdio.h> #include <string.h> #include <ctype.h> #include <stdbool.h> #define LEN 4 struct month{

C++ primer plus 六版 程式設計練習答案

第十四章 程式設計練習答案 這章看的頭有點暈,好多東西都是網上看別人的程式碼,學的有點模糊 1. //標頭檔案,類的宣告 #ifndef WINE_H_ #define WINE_H_ #include <iostream> #inclu

程式設計練習(2)

程式設計練習4 //Person.h #ifndef PERSON_H_ #define PERSON_H_ #include <string> #include <iostream> class Person { private

C++Primer Plus筆記—— C++中的程式碼重用課後程式設計練習答案

程式設計練習答案 習題1     習題2     習題3    習題4    習題5 習題1 //winec.h #ifndef WINEC_H_ #define WINEC_H_ #include <iostream> #include <strin

C primer plus 六版 題 程式設計練習答案

Github地址:φ(>ω<*)這裡這裡。 /*    本程式應 習題 - 14 建立。      題目要求: 以變長陣列作為函式形參,完成程式設計練習13。          &

C primer plus 六版 題 程式設計練習答案

Github地址:φ(>ω<*) 這裡這裡。 #include<stdio.h> int main(void) { int i = 0; // Create for loop. int j = 2; // Create for assign. int i

上機練習1

<html > <head> <title>網易郵箱登入</title> </head> <body> <table width="780" border="0" align="center" c

Java-Java程式設計思想 練習

練習1:// In ToyTest.java, comment out Toy's default constructor and // explain what happens. import static net.mindview.util.Print.*; inter