摘要:
题目内容: 你的程序要读入一个整数,范围是[-100000,100000]。然后,用汉语拼音将这个整数的每一位输出出来。 如输入1234,则输出: yi er san si 注意,每个字的拼音之间有一个空格,但是最后的字后面没有空格。当遇到负数时,在输出的开头加上“fu”,如-2341输出为: fu 阅读全文
摘要:
#include #include int main(void) { int x; int ret=0; scanf("%d",&x); int t=x; while(x>1) { x=x/2; ret++; } printf("log2 of %d is %d",t,ret); return ... 阅读全文
摘要:
一、what is artificial Intelligence 1、the Intelligence exhibited by machines of software机器或软件所展示的智能 2、The name of the academic field of research学术研究领域的名 阅读全文