代码搜索:Question
找到约 5,399 项符合「Question」的源代码
代码结果 5,399
www.eeworm.com/read/464525/7156762
java paper.java
package exam.model;
import java.util.ArrayList;
import java.util.List;
public class Paper {
private String subject;//科目
private List allQuestions;//所有试题对象
private int[] answers;//
www.eeworm.com/read/464525/7156784
java questionreader.java
package exam.util;
import java.io.BufferedReader;
import java.io.IOException;
import exam.model.Question;
public class QuestionReader {
private BufferedReader br;
public QuestionReader(B
www.eeworm.com/read/464279/7166955
sh qu-17-03.sh
#!/bin/sh
# Chapter 17 - Answer for Question 3
awk -F: '
$1 == "B" {
BAL=$NF ;
next ;
}
$1 == "D" {
BAL += $NF ;
}
($1 == "C") || ($1 == "W") {
BAL
www.eeworm.com/read/464279/7166958
sh qu-17-02_1.sh
#!/bin/sh
# Chapter 17 - Answer for Question 2
awk 'BEGIN { FS=":" ; }
$1 == "B" {
BAL=$NF ; next ;
}
$1 == "D" {
BAL += $NF ;
}
($1 == "C") || ($1 == "W") {
www.eeworm.com/read/464279/7166962
sh qu-17-04.sh
#!/bin/sh
# Chapter 17 - Answer for Question 4
awk -F: '
$1 == "B" {
BAL=$NF ;
next ;
}
$1 == "M" {
MIN=$NF ;
next ;
}
$1 == "D" {
BAL += $
www.eeworm.com/read/464279/7166966
sh qu-17-02_2.sh
#!/bin/sh
# Chapter 17 - Answer for Question 2
awk -F: '
$1 == "B" {
BAL=$NF ; next ;
}
$1 == "D" {
BAL += $NF ;
}
($1 == "C") || ($1 == "W") {
BAL-=$NF ;
www.eeworm.com/read/464279/7166977
sh qu-12-01.sh
#!/bin/sh
# Answer to Chapter 13 Question 1
if [ $# -lt 2 ] ; then
echo "ERROR: Insufficient arguments." ;
exit 1 ;
fi
case "$1" in
-o) printf "%o\n" "$2" ;;
-x) printf "%x\n" "$2"
www.eeworm.com/read/464279/7166978
sh qu-12-02.sh
#!/bin/sh
# Answer to Chapter 13 Question 2
if [ $# -lt 2 ] ; then
echo "ERROR: Insufficient arguments." >&2
exit 1 ;
fi
case "$1" in
-o) printf "%o\n" "$2" ;;
-x) printf "%x\n" "$2"