代码搜索结果
找到约 10,000 项符合
3 的代码
3.asm
.386
.model flat, stdcall
option casemap :none ;case sensitive
include \masm32\include\windows.inc ;系统常量定义
include \masm32\include\kernel32.inc ;使用的多个API声明在该文件
include \masm32\in
script3
#!/bin/sh
# script3 - shows how an environment variable is passed to commands
# TZ is timezone, affect things like date, and ls -l
#
echo "The time in Boston is"
TZ=EST5EDT
export TZ # ad
3.c
#include
void main()
{
int i,j,k;
float f,h;
i = 22;
j = 8;
f = 1000.25;
h = 830.78;
printf("*************************************\n");
printf("** This is a arithmetic ca
1(3).c
#include
#include
#define BUFFERSIZE 1024 /*允许处理的最长行有1024个字符*/
int main()
{
unsigned short a,b,sum; /*将输入的两个数分别存储在变量a和b中,sum=a+b*/
char buffer[BUFFERSIZE];
printf