本文介绍了我想编写一个打开以前创建的文件“out.dat”的c ++程序。并计算agaatacaccaacgacta中字母'c'的相对频率...请帮助我填补空白点。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#include<.........>
#include <fstream>
#include<........>
int main()
{
    ........a;
    ........count=0;
    ........myFile("out.dat");
    while(myFile >> a)
    {
        if(a ............'C')
            Count=count.....;
    }
    cout<< ........ <<"\n";
    getchar();
    return 0;
}





我的尝试:



我试过Cpp.sh ......无法运行它..因为我不明白如何完成程序......我发现计数很难理解



What I have tried:

I tried Cpp.sh ... Couldn't run it .. Because I didn't understand how to complete the program... I find counting is hard to understand

推荐答案



这篇关于我想编写一个打开以前创建的文件“out.dat”的c ++程序。并计算agaatacaccaacgacta中字母'c'的相对频率...请帮助我填补空白点。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 09:30