查詢不及格人數問題

2021-09-27 11:55:18 字數 2293 閱讀 9401

student.class

package com.object;

/** *

* title: student

* description:學生資訊類

* @author linian

* @date 2023年9月24日

*/public

class

student

//有參的構造方法 初始化工作

public

student

(int id,string name,

int english,

int heighmath,

int pe)

public

static

void

main

(string[

] args)

public

intgetid()

public

void

setid

(int id)

public string getname()

public

void

setname

(string name)

public

double

getenglish()

public

void

setenglish

(int english)

public

double

getheighmath()

public

void

setheighmath

(int heighmath)

public

double

getpe()

public

void

setpe

(int pe)

public string tostring()

}

studentlist.class

package com.object;

/** *

* title: studentlist

* description: 測試類

* @author linian

* @date 2023年9月26日

*/public

class

studentlist

/** * 查詢名字中是否含有相同的字

* @param value=查詢相同的字

*/public

static

void

part

(string value)

} system.out.

println()

;//換行

}/**

* 輸出學生的所有資訊

* @param args

*/public

static

void

entire()

}/**

* 查詢所有學生中英語不及格的人數

*/public

static

void

fail()

} system.out.

print

("總共有"

+people+

"人\n");

/** * 查詢所有學生中高數不及格的人數

*/people =0;

system.out.

print

("高數成績不及格的有:");

for(

int i =

0; i < stu.length; i++)}

system.out.

print

("總共有"

+people+

"人\n");

/** * 查詢所有學生中體育不及格的人數

*/people =0;

system.out.

print

("體育成績不及格的有:");

for(

int i =

0; i < stu.length; i++)}

system.out.

print

("總共有"

+people+

"人\n");

system.out.

println();}}

YTU 2716 統計不及格人數

設一維陣列存放了n 100 個學生的成績,編寫函式求不及格的人數 部分 已給定如下,只需要提交缺失的 include using namespace std int main num failcnt score,n cout n和n個學生的成績 不及格的人數 10 90 85 50 45 70 76...

一張表中, 查詢學生及格和不及格人數

表結構為 class name score 班級 姓名 分數 查詢每個班級中,及格和不及格學生的人數 select class sum case when score 60 then 1 else 0 end as gt60,sum case when score 60 then 0 else 1 ...

簡單HQL練習 查詢表中及格人數與不及格人數

在一條sql中使用條件進行判斷可以使用where子句,但是對兩個相反的條件進行選擇的話,就必須使用case when子句。比如統計表中及格人數與不及格人數,同時限定一條sql語句的話,就可以這樣寫 select sum case when score 60 then 1 else 0 end as ...