代码搜索:Static
找到约 10,000 项符合「Static」的源代码
代码结果 10,000
www.eeworm.com/read/169721/9844985
c static.c
/* 给出年、月、日,计算该日是该年的第几天 */
# include
int sum_day(int month, int day);
int leap(int year);
void main()
{
int year, month, day;
int days;
printf("请输入日期(年,月,日):");
scanf("%d, %d
www.eeworm.com/read/169214/9875464
static entries.static
www.eeworm.com/read/363888/9933062
cpp static.cpp
//: C03:Static.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Using a static variable in a func
www.eeworm.com/read/168118/9938008
m static.m
function [recstat,shotstat] =static(depth, shotcoord, shotelev, recelev, uphole, datum, repvel,psd, v1rec, v2rec)
% Calculate the receiver and the shot static corrections according to a depth
% and v
www.eeworm.com/read/360263/10105263
c static.c
#include
void print_reportcard(int printer_number)
{
static int student_id = 100;
printf("Printing report card for student %d\n", student_id);
student_id++;
// Other
www.eeworm.com/read/360206/10106274
c static.c
#include
void print_reportcard(int printer_number)
{
static int student_id = 100;
printf("Printing report card for student %d\n", student_id);
student_id++;
// Other
www.eeworm.com/read/358682/10182107
cpp static.cpp
// static.cpp -- using a static local variable
#include
// constants
const int ArSize = 10;
// function prototype
void strcount(const char * str);
int main()
{
using namespa
www.eeworm.com/read/357852/10200389
h static.h
#ifndef STATIC_H
#define STATIC_H
//start
class Thing {
public:
Thing(int a, int b);
~Thing();
void display() const ;
static void showCount();
private:
int m_First, m_Second;
s
www.eeworm.com/read/357852/10200390
cpp static.cpp
#include "static.h"
#include
int Thing::sm_Count = 0; /* must initialize static member! */
Thing::Thing(int a, int b)
: m_First(a), m_Second(b) {
++sm_Count;
}
Thing::~Thing
www.eeworm.com/read/356303/10232177
c static.c
/* 给出年、月、日,计算该日是该年的第几天 */
# include
int sum_day(int month, int day);
int leap(int year);
void main()
{
int year, month, day;
int days;
printf("请输入日期(年,月,日):");
scanf("%d, %d