代码搜索:Functions
找到约 10,000 项符合「Functions」的源代码
代码结果 10,000
www.eeworm.com/read/319883/13440460
cpp functions.cpp
// functions.cpp
//#define TESTFUNCTION // Uncomment to get trace output
#ifdef TESTFUNCTION
#include // Only required for trace output
#endif
#include
www.eeworm.com/read/319883/13440461
h functions.h
// functions.h
#if !defined FUNCTIONS_H
#define FUNCTIONS_H
namespace fun {
// Function prototypes
int sum(int, int); // Sum arguments
int product(int, int); // P
www.eeworm.com/read/317982/13491169
cs functions.cs
using System;
using System.Text;
using System.Web.Security;
namespace Hugo
{
///
/// functions
///
public class Functions
{
public Functions()
{
//
/
www.eeworm.com/read/312035/13619895
cpp functions.cpp
#include
#include"functions.hpp"
//打印字符串str到屏幕,参数采用字符指针.
bool PRINT_func(char* str)
{
cout
www.eeworm.com/read/312035/13619898
hpp functions.hpp
#ifndef FUNCTION_HPP
#define FUNCTION_HPP
#include
#include
using namespace std;
//描述F过程,具体内容参考实验指导书
//第一参数为string类型迭代器的引用,用以带回对主调函数迭代器的修改
//第二参数为int类型的用以,用以带回对主调函数出错标志的修改
bo