javascript新郎新娘问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript新郎新娘问题相关的知识,希望对你有一定的参考价值。
下面这个题按照标准答案输进去不知道为什么是空白页,求问哪里错了呢?题目:三对新婚夫妇参加婚礼,三个新郞为A、B、C,三个新娘为X、Y、Z。有人不知道谁和谁结婚,于是询问了六位新人中的三位,但听到的回答是这样的:A说他将和X结婚;X说她的未婚夫是C;C说他将和Z结婚。这人听后知道他们在开玩笑,全是假话。请编程找出谁将和谁结婚。 答案是如图: <!doctype html><html><head><meta charset="utf-8"><title>brides and grooms</title></head><body><font size=10><script type="text/javascript"> var x,y,z; var A="A".charCodeAt(0); for(x=1;x<=3;x++) for(y=1;y<=3;y++) for(z=1;z<=3;z++) if(x!=y&&y!=z&&z!=x&&x!=1&&x=!3&&z!=3) document.write("X will marry"+String.fromCharCode(x-1+A)+'<Br>'); document.write("Y will marry"+String.fromCharCode(y-1+A)+'<Br>'); document.write("Z will marry"+String.fromCharCode(z-1+A)+'<Br>'); </script></font></body></html>
参考技术Aif(x!=y&&y!=z&&z!=x&&x!=1&&x=!3&&z!=3)
改为
if(x!=y&&y!=z&&z!=x&&x!=1&&x!=3&&z!=3)
参考技术B <script>var x, y, z;
var A = "A".charCodeAt(0);
for (x = 1; x <= 3; x++)
for (y = 1; y <= 3; y++)
for (z = 1; z <= 3; z++)
if (x != y && y != z && z != x && x != 1 && x != 3 && z != 3)
document.write("Z will marry"+ String.fromCharCode(x - 1 + A) +'<Br>');
document.write("Z will marry"+ String.fromCharCode(y - 1 + A) +'<Br>');
document.write("Z will marry"+ String.fromCharCode(z - 1 + A) +'<Br>');
</script>
你替换一下这个 参考技术C if(x!=y&&y!=z&&z!=x&&x!=1&&x=!3&&z!=3)
这里错了
!=写成了 =! 参考技术D <script>
var x,y,z; //三个新娘未知值
var a=0,b=1,c=2; //三个新郞假设值
for(x=0;x<3;x++)
for(y=0;y<3;y++)
for(z=0;z<3;z++)
//x!=y&&y!=z&&z!=x 三个新娘值各自不相同
//A说他将和X结婚 x!=0
//X说她的未婚夫是C x!=2
//C说他将和Z结婚 z!=2
if(x!=y&&y!=z&&z!=x&&x!=0&&x!=2&&z!=2)
//值相等则结婚
var arr = [];
arr[x] = 'X';
arr[y] = 'Y';
arr[z] = 'Z';
document.write("A will marry "+arr[a]+'<Br>');
document.write("B will marry "+arr[b]+'<Br>');
document.write("C will marry "+arr[c]+'<Br>');
</script>
不容易系列之——考新郎
首先,给每位新娘打扮得几乎一模一样,并盖上大大的红盖头随机坐成一排;
然后,让各位新郎寻找自己的新娘.每人只准找一个,并且不允许多人找一个.
最后,揭开盖头,如果找错了对象就要当众跪搓衣板...
看来做新郎也不是容易的事情...
假设一共有N对新婚夫妇,其中有M个新郎找错了新娘,求发生这种情况一共有多少种可能.
1 #include<bits/stdc++.h> 2 using namespace std; 3 long long int c,m,n,cuopai[25]; 4 long long int C(int n,int m){ 5 if(m == n || m == 0) 6 return 1; 7 else if(m == 1) 8 return n; 9 else 10 return C(n - 1,m - 1) + C(n - 1,m); 11 } 12 void init(){ 13 cuopai[1] = 0,cuopai[2] = 1; 14 for(int i = 3;i <= 20;i++) 15 cuopai[i] = (i - 1) * (cuopai[i - 2] + cuopai[i - 1]); 16 return; 17 } 18 int main(){ 19 init();//错排打表 20 scanf("%lld",&c); 21 while(c--){ 22 scanf("%lld%lld",&n,&m); 23 printf("%lld ",C(n,m) * cuopai[m]); 24 } 25 return 0; 26 }
以上是关于javascript新郎新娘问题的主要内容,如果未能解决你的问题,请参考以下文章