代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/208614/15242526
f90 ex0508.f90
program ex0508
implicit none
real x,y
integer ans
write(*,*) "Input (x,y)"
read(*,*) x,y
if ( x>0 ) then
if ( y>0 ) then ! x>0,y>0
ans=1
else if ( y0, y
www.eeworm.com/read/208614/15242608
f90 ex0406.f90
program ex0406
integer(kind=4) write
write=2+2*4-3
write(*,*) "2+2*4-3=",write
stop
end
www.eeworm.com/read/208576/15243729
cpp fig20_04.cpp
// Fig 20.4: Fig20_04.cpp
// BinarySearch test program.
#include
using std::cin;
using std::cout;
using std::endl;
#include "BinarySearch.h" // class BinarySearch definition
int
www.eeworm.com/read/208576/15243825
cpp fige_08.cpp
// Fig. E.8: figE_08.cpp
// An example of a union.
#include
using std::cout;
using std::endl;
// define union Number
union Number
{
int intege
www.eeworm.com/read/208576/15244092
cpp fig02_05.cpp
// Fig. 2.5: fig02_05.cpp
// Addition program that displays the sum of two numbers.
#include // allows program to perform input and output
// function main begins program execution
in
www.eeworm.com/read/208149/15253472
pas bsskinmenus.pas
{*******************************************************************}
{ }
{ Almediadev Visual Component Library
www.eeworm.com/read/208140/15253636
pas hemispherebutton.pas
unit HemisphereButton;
{*
** 球形按钮
** 作者:Chirstian Schnell
** 修改:午秋
** 更新:新增了一个 Action 属性
** THemisphereButton implementation
** Copyright (c) 1997 Christian Schnell
**
** Author: Christian
www.eeworm.com/read/208105/15254590
pas bsskinmenus.pas
{*******************************************************************}
{ }
{ Almediadev Visual Component Library
www.eeworm.com/read/208105/15254594
pas bsbuttongroup.pas
{*******************************************************************}
{ }
{ Almediadev Visual Component Library
www.eeworm.com/read/207496/15269900
ps fpctest.ps
var
i : Integer;
begin
i:=pos('e', 'Hello');
writeln(inttostr(i));
end.