代码搜索结果
找到约 1,193 项符合
Q 的代码
1142down.pas
{$Q-,$R-}
program tju1142;
var
num:array['A'..'Z']of byte;
used:array[0..25]of boolean;
pre,next:array[-1..26]of shortint;
s:array[1..3]of string;
n,i:byte;
found:boolean;
procedu
1142rnd.pas
{$Q-,$R-}
program tju1142;
var
num:array['A'..'Z']of byte;
used:array[0..25]of boolean;
pre,next:array[-1..26]of shortint;
s:array[1..3]of string;
n,i,p,t:shortint;
found:boolean;
ac1249.pas
{$Q-,R-}
program tju1249;
const
maxn=1000;
maxv=maxn*2+2;
maxe=maxn*12;
var
edge:array[1..maxe]of record pre,v1,v2:word;cap:byte;cost:integer;end;
last,q,from:array[1..maxv]of word;
ac1242.pas
{$Q-,R-}
program tju1242;
const
maxn=30000;
maxe=100000;
maxq=100000;
var
edge:array[1..maxe]of record v1,v2:word;pre1,pre2:longint;del:byte;end;
query:array[1..maxq+maxe-maxn+1]of r
技術論1.txt
<mark>Q</mark>:如何更改视窗标题?
A:只要在程式中,設定以下命令即可, _SCREEN.CAPTION="標題"
<mark>Q</mark>:如何改變桌面的圖示
A:在任何一個畫面檔案下按 右鍵,選擇專案資訊,然後改變裡面的圖示即可
<mark>Q</mark>:編譯成執行檔時,為什麼執行程式,畫面開啟後隨即又自動關閉
A:在功能表列選擇主要執行的的表列按修改,然後,在選單上,挑選 檢視/一般選項選擇後續設定,然後 ...
q-function.sh
#!/bin/bash
# Douglas Hofstadter's notorious "Q-series":
# Q(1) = Q(2) = 1
# Q(n) = Q(n - Q(n-1)) + Q(n - Q(n-2)), for n>2
# This is a "chaotic" integer series with strange and unpredictable beh
q
#!/usr/bin/env perl
# $Id: q,v 1.1 2003/11/26 20:30:12 tans Exp $
# Copyright (c) 2002, 2003 Shufeng Tan. All rights reserved.
#
# This program is free software and is provided "as is" without expr
q.m
function [y]=Q(x)
% [y]=Q(x)
% Q evaluates the Q-function.
% y = 1/sqrt(2*pi) * integral from x to inf of exp(-t^2/2) dt.
% y = (1/2) * erfc(x/sqrt(2)).
y=(1/2)*erfc(x/sqrt(2));
q.c
int array[10];
main()
{
char i;
i=4;
i=4;
i=4;
i=4;
array[i++] = 4;
}
q.m
function p = Q(x)
p = 0.5*erfc(x/sqrt(2));