VOID void[简明英汉词典][v?id]adj. 1 空的, 空虚的 2 没有…的 3 无效的 n. 1 太空, 宇宙空间 2 空隙, 空处 3 空虚感, 失落感 引起注意吧(动词)
void.ed, loneliness; vacate:
无效的, or loss.
空虚感:空虚; 空虚的.
---------- 2 ----------
[pred 作表语] ~ of sth without sth; lacking sth 没有某事物.
真空
An open space or a break in continuity; a gap,void.ing,voids
v.tr:没有东西的VOID、孤独或失落的感觉
Games Absence of cards of a particular suit in a dealt hand:
* the blue void we call the sky 我们称之为天空的蔚蓝色空间
*
(fig 比喻) an aching void left by the death of her child 她孩子死后留下的痛苦的空虚感:没有法律效力或约束力的,取消:使无效或失去效力; devoid.See Synonyms at empty
缺乏理解参见 empty
Ineffective;o 真空:
没有的:
使无效; 缺乏某事物: Her face was void of all interest;空的
Not occupied; unfilled.
空无所有的:没有被占有的:应该是无效的意思。你可以把具体语境告诉我,可以一起分析一下;vus}
拉丁语 vacoovus}
variant of vacuus
vacuus的变体
from vac3e [to be empty] * see eu- 2
源自 vac3e [使空] *参见 eu- 2
void“er
n; empty.
使空出:取出(某物的内容);使空
To excrete (body wastes).
红心缺门
v:
【游戏】 缺门; null. 她面部表情显得对什麽都不感兴趣. Cf 参看 devoid.
---------- 3 ----------
(idm 习语) null and void => null.
void v [Tn]
---------- 1 ----------
(law 律) make (sth) not legally binding 使(某物)无效的:一手牌中没有某一种花色的
n.
空白,空处.intr.(不及物动词)
To excrete body wastes.
排泄.(名词)
An empty space.
空间
6,与十进制数677等值的十六进制数是怎么算啊
#include void ba(); void er(); void shiliu(); int num[50]; int i,shu; int count = 0; void main() { int chioce; do { printf("\n0.退出、1.十进制--二进制、2.十进制--八进制、3.十进制--十六进制\n"); printf("选择的功能:"); scanf("%d",&chioce); switch (chioce) { case 1: er(); break; case 2: ba(); break; case 3: shiliu(); break; } } while ( !chioce == 0); printf("退出\n"); printf("\n"); } void er() { count = 0; printf("请输入一个十进制的数:"); scanf("%d",&shu); do { num[count] = shu%2; shu = shu/2; count++; }while (shu!=0); printf("转换为二进制为:"); for (i = count - 1;i >= 0;i--) { printf("%d",num[i]); } printf("\n"); } void ba() { count = 0; printf("请输入一个十进制的数:"); scanf("%d",&shu); do { num[count] = shu%8; shu = shu/8; count++; }while (shu!=0); printf("转换为八进制为:"); for (i = count - 1;i >= 0;i--) { printf("%d",num[i]); } printf("\n"); } void shiliu() { count = 0; printf("请输入一个十进制的数:"); scanf("%d",&shu); do { num[count] = shu%16; shu = shu/16; count++; }while (shu!=0); printf("转换为十六进制为:"); for (i = count - 1;i >= 0;i--) { switch (num[i]) { case 10:printf("A"); break; case 11:printf("B"); break; case 12:printf("C"); break; case 13:printf("D"); break; case 14:printf("E"); break; case 15:printf("F"); break; default:printf("%d",num[i]); } } printf("\n"); }用667除以16余数做个位,商在除以16余数做第二位,以此循环知道商为零就可以了