代码搜索结果
找到约 10,000 项符合
Input 的代码
add.pin
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions,
sub.pin
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions,
encode.pin
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions,
bcd.pin
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions,
multlchk.m
function [input,inpidx,table] = multlchk(input,inpidx,table)
%MULTLCHK checks input to MULTLINR for correctness.
% [INPUT,INPIDX,TABLE] = MULTLCHK(INPUT,INPIDX,TABLE)
% ensures that all
del2_5pt.m
function [output]=del2_5pt(input,delx)
% DEL2_5PT ... compute the 5 point Laplacian
%
% [output]=del2_5pt(input,delx)
%
% DEL2_5PT computes the 5 point approximation to the laplacian operator of
exam1.txt
PRINT "子程序调用测试"
100 gosub 200
print "程序已经返回"
INPUT "开始=1 结束=0 #@",x
if x=1 then goto 100
END
200
print "子程序开始"
input "输入一个数g: ",g
l=g^2
print "g 的值为:";g,"g 的平方是:";l
return
h0504.c
#include
int main(void)
{
char string[80];
printf("Input a string:");
gets(string);
printf("The string input was: %s\n", string);
return 0;
}