1. 程式人生 > >ex10_3生物信息:找基因

ex10_3生物信息:找基因

eat 生物信息 ostream cout pac names ace ring creat

//
//  main.cpp
//  ex10_3
//
//  Created by a007 on 17/12/1.
//  Copyright ? 2017年 a007. All rights reserved.
//


// 占坑 未完待續。。。。。。


#include <iostream>
using namespace std;

string findGene(const string &str){
    string temp = "";
    string begin = "ATG";
    string end1 = "TAG";
    string end2 = "TAA";
    string end3 = "TGA";
    
    
    return temp;
}

int main(int argc, const char * argv[]) {
    
    std::cout << "Hello, World!\n";
    return 0;
}

ex10_3生物信息:找基因