• 2021-04-14
    译码器74LS138在什么条件下,实现译码功能?? 当使能端S1=0,S1’+S2’=0时|当使能端S1=1,S1’+S2’=1时|当使能端S1=1,S1’+S2’=0时|当使能端S1=0,S1’+S2’=1时
  • 当使能端S1=1,S1’+S2’=0时

    内容

    • 0

      一个一阶马尔可夫信源,转移概率为:P(S1|S1)=2/3,P(S2|S1)=1/3,P(S1|S2)1,P(S2|S2)=0,则其状态极限概率为: A: P(S1)=2/3,P(S2)=1/3 B: P(S1)=3/4,P(S2)=1/4 C: P(S1)=2/3,P(S2)=1 D: P(S1)=0,P(S2)=1/4

    • 1

      设s="abcd",s1="123",则执行语句s2=InsStr(s,2,s1)后,s2=()

    • 2

      已定义字符数组s1和s2,以下错误的输入语句是( )。 A: scanf("%s%s ", &s1,&s2); B: gets(s1,s2) ; C: gets(s1); gets(s2); D: scanf("%s%s ", s1,s2);

    • 3

      有两个字符数组s1,s2,则以下正确的输入语句是() A: scanf("%s%s",s1,s2); B: gets("s1"),gets("s2"); C: scanf("%s%s",&s1,&s2); D: gets(s1,s2);

    • 4

      【单选题】If there are String s1,s2,and s1> s2,what’s the right statement? A. if(s1>s2) B. if(strcmp(s1,s2)) C. if(strcmp(s2,s1)>0) D. if(strcmp(s1,s2)>0)