我写了这个简单的程序来生成包含ATGC的随机遗传密码。我很确定代码是正确的;但是,它不会在我的系统上编译。如果有人可以调试这个,我将不胜感激。
这就是我的想法。
生成随机遗传密码的最简单代码
#include "StdAfx.h"
#include <iostream>
#include <cstdlib>
using namespace std;
(int main(
int x = rand();
if {(x % 2 == 0)
(int main(
int y = rand());
if {(y % 2 == 0)
{
cout<<"A\n";}}
else
{
cout<<"T\n";}
}))}
else
(int main(
int z = rand());
if {(z % 2 == 0)
{
cout<<"G\n";}}
else
{
cout<<"C\n";}
}))}