代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/469107/6977611
cpp 学生成绩管理系统.cpp
// 学生成绩管理系统.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
using namespace std;
const int Max=5;//字符串最大长度
clas
www.eeworm.com/read/468329/6996678
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/468329/6996728
cpp block.cpp
// block.cpp -- use a block statement
#include
int main()
{
using namespace std;
cout
www.eeworm.com/read/466324/7032563
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/466324/7032654
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/466324/7032828
java exercise5_1.java
import javax.swing.*;
public class Exercise5_1 {
public static void main(String[] args) {
double[] numbers = new double[10];
double sum = 0;
for (int i = 0; i < numbers.length;
www.eeworm.com/read/166571/7095809
cpp accum8.cpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/189342/7115056
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/463989/7171105
sta picusb.sta
ROM used: 3668 (11%)
3668 (11%) including unused fragments
1 Average locations per line
6 Average locations per statement
RAM used: 430 (21%) at main() level
www.eeworm.com/read/463310/7183823
java popupwin.java
package physics;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class PopupWin extends Dialog implements ActionListener
{
//MainFrame mf=new MainFrame("");
i