代码搜索:PLEASE
找到约 10,000 项符合「PLEASE」的源代码
代码结果 10,000
www.eeworm.com/read/291432/8420876
c al4_3.c
/*案例代码文件名:AL4_3.C。*/
/*功能:说明if语句的嵌套格式和用法。*/
main()
{ int year,leap=0; /* leap=0:预置为非闰年*/
printf("Please input the year:");
scanf("%d",&year);
if (year % 4==0)
{if (year % 100 != 0)
www.eeworm.com/read/188913/8509128
txt c_3mfz.txt
打印“魔方阵”,所谓魔方阵是指这样的方阵 ,它的每一行,每一列和对角线之间和均相等。例如,三阶魔方阵为
8 1 6
3 5 7
4 9 2
要求打印出1~n的平方数的自然数的魔方阵。
c版本的答案:
#include
#include
#in
www.eeworm.com/read/431880/8648162
cpp cpp5.cpp
#include
#include
void main()
{
int m[200];
int n[200];
int i,j;
cout
www.eeworm.com/read/429491/8806209
f90 mpso1.f90
real x10,x20,pi,pi0,o12,random,pq
double precision x1,x2
f(x1,x2)=(1+((x1+x2+1)**2)*(19-14*x1+3*x1*x1-14*x2+6*x1*x2+3*x2*x2))*(30+((2*x1-3*x2)**2)*(18-32*x1+12*x1*x1+48*x2-36*x1*x2+27*x2
www.eeworm.com/read/384426/8870757
readme
20040814 Contents of data directory
This data directory should be located within the SSUM directory. It contains
numerous types of signals and images with which to use SSUM. If you have other
great e
www.eeworm.com/read/428158/8889407
m wimax.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %
%% Name: wimax.m
www.eeworm.com/read/428158/8889522
asv wimax.asv
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %
%% Name: wimax.m
www.eeworm.com/read/428081/8896847
c 07_03.c
/* http://blog.csdn.net/babykaokao/archive/2008/04/22/2316076.aspx */
/* 假设有一个二维整型数组,存放着不同的整数。请编写一个函数求出该二维数组中所有鞍点。
所谓鞍点指该元素的值在所在行中是最大的,在所在列中是最小的。其函数的形式为:
int f(int a[M][N],int m,int n,in
www.eeworm.com/read/384066/8903319
c 实矩阵乘法.c
#include"stdio.h"
#define MAX 255
void MatrixMul(a,b,m,n,k,c)/*实矩阵相乘*/
int m,n,k;
double a[],b[],c[];
{
int i,j,l,u;
for(i=0;i
www.eeworm.com/read/284698/8908733
c ex4-6.c
#include
void sort (array, n)
int array[];
int n;
{
int i, j, k, t;
for (i=0; i