创建随机二进制生成器

时间:2015-10-24 05:32:47

标签: binary

您好我正在尝试编写一个代码来输出随机二进制序列。

这是我提出的,但是当我尝试编译时它会一直出错。

有人可以帮忙吗?

#include <StdAfx.h>
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{int x = rand();
if (x/2 == 0);
printf('1');
else 
printf('0');
}

1 个答案:

答案 0 :(得分:0)

;

之后删除if (x/2 == 0)
#include <StdAfx.h>
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
  int x = rand();
  if (x/2 == 0)
    printf('1');
  else 
    printf('0');
}