代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/262924/4307949
java maxofthree.java
//MaxOfThree.java
//求三个数中的最大者
public class MaxOfThree
{
public static void main(String args[])
{
int a=5;
int b=6;
int c=7;
if(a>b)
if(a>c)
{
System.out.pr
www.eeworm.com/read/259371/4343747
txt 程嶏清单9-6.txt
sub smaller_than_30
{
my (@result); # 局部变量,暂时储存返回值
foreach $_ (@_) # 扫描参数列
{
if ($_
www.eeworm.com/read/160131/5576842
java maxofthree.java
//MaxOfThree.java
//求三个数中的最大者
public class MaxOfThree
{
public static void main(String args[])
{
int a=5;
int b=6;
int c=7;
if(a>b)
if(a>c)
{
System.out.pr
www.eeworm.com/read/156960/5608177
cpp p3-140.cpp
#include
#include
#define MAX 30
//main()的定义
int main(void)
{
char str[MAX],*p;
//从键盘上输入int数
cout
www.eeworm.com/read/156960/5608226
cpp p1-6.cpp
#include //包含iostream.h头文件
main()
{
//声明整型变量
int a,b;
//从键盘上为整型变量赋值
couta;
coutb;
//整型数的算术运算
cout