代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/456533/7346220
cpp block.cpp
// block.cpp -- use a block statement
#include
int main()
{
using namespace std;
cout
www.eeworm.com/read/456367/7350711
cpp cingolf.cpp
// cingolf.cpp -- non-numeric input skipped
#include
const int Max = 5;
int main()
{
using namespace std;
// get data
int golf[Max];
cout
www.eeworm.com/read/456367/7350761
cpp block.cpp
// block.cpp -- use a block statement
#include
int main()
{
using namespace std;
cout
www.eeworm.com/read/456367/7350995
cpp cingolf.cpp
// cingolf.cpp -- non-numeric input skipped
#include
const int Max = 5;
int main()
{
using namespace std;
// get data
int golf[Max];
cout
www.eeworm.com/read/456367/7351045
cpp block.cpp
// block.cpp -- use a block statement
#include
int main()
{
using namespace std;
cout
www.eeworm.com/read/456187/7355307
java exercise5_4.java
// Exercise5_4.java: Analyze scores
import javax.swing.JOptionPane;
public class Exercise5_4 {
// Main method
public static void main(String[] args) {
double[] scores = new double[100];
d
www.eeworm.com/read/456187/7355378
java exercise5_8.java
// Exercise5_8.java:
public class Exercise5_8 {
// Main method
public static void main(String[] args) {
int[] list1 = {1, 2, 3, 4, 5, 6};
double[] list2 = {5.0, 4.4, 1.9, 2.9, 3.4, 3.
www.eeworm.com/read/453496/7418389
c math.c
#include
void main ()
{
int seconds_in_an_hour;
float average;
seconds_in_an_hour = 60 * 60;
average = (5 + 10 + 15 + 20) / 4;
printf("The number of secon
www.eeworm.com/read/452964/7428561
txt 例9.11.txt
例9.11 静态成员函数的应用。
#include
using namespace std;
class Student //定义Student类
{public:
Student(int n,int a,float s):num(n),age(a),score(s){ } //定义构造函数
void total( )
www.eeworm.com/read/452713/7434391
cpp xt9-9.cpp
#include
using namespace std;
class Product
{public:
Product(int n,int q,float p):num(n),quantity(q),price(p){};
void total();
static float average();
static void displa