//**************************************************************************************************************
// FILE: a04.cpp
//**************************************************************************************************************
#include <fstream>
#include <iostream>
#include "Sorter.hpp"
using namespace std;
// Write the function header for Merge ()
void Merge(int a[] , int b[],int c[], int n)
{
int i = 0, j = 0, k = 0;
while (i < n || j < n) {
// Write the if-elseif-elseif-... statement in the body of the while loop
if (i < n && j < n && a<=b) {
c = a;
i++;
}
else …Run Code Online (Sandbox Code Playgroud) 我只是想知道是否可以在FPGA板的7段显示器上显示一个句子,例如"SOLD OUT",我只能显示四个字母.
我希望它显示SOLD然后OUT.
如果可以实现,我该怎么办?时钟分频器?