我想制作一个在输入密钥时发出声音的程序。
这个过程是这样的 - >获取有关键和&的数据来自.txt文件的频率并将该数据存储在数组中。然后,使用函数' findFrequency'和' playpiano'我做了,我想在输入钥匙时发出声音。
我制作的代码是这样的:
#include <stdio.h>
#include <windows.h>
#include <stdbool.h>
#define NUM_NOTES 8
char key_table[NUM_NOTES];
float freq_table[NUM_NOTES];
float findFrequency(const char note);
void playpiano(void);
void main()
{
FILE *input_file = fopen("digitalpiano.txt", "r");
int num_keys;
fscanf(input_file, "%d\n", &num_keys);
printf("%d\n", num_keys);
for (int i = 0; i < NUM_NOTES; i++)
{
char key; // I think I can delete this code
float freq; // I think I can delete this code
fscanf(input_file, "%c %f\n", &key_table[i], &freq_table[i]);
printf("%c %.3f\n", key_table[i], freq_table[i]);
}
fclose(input_file);
while (true)
playpiano;
}
float findFrequency(char note)
{
for (int i = 0; i < NUM_NOTES; i++)
{
if (key_table[i] == note) return freq_table[i];
}
return 0.0f;
}
void playpiano(void)
{
char ch = getch();
Beep(findFrequency(ch), 500);
return;
}
但是当我启动此代码时,我可以显示来自txt文件的数据。但是当我输入一个键时,有声音,所以我听不到任何声音。
digitalpiano.txt文件是这样的:
8
a 261.626
s 293.665
d 329.628
f 349.228
g 391.995
h 440.000
j 493.883
k 523.251
答案 0 :(得分:1)
你没有打电话给declare
TYPE t_ iS TABLE OF MY_TABLE%ROWTYPE;
v_t t_;
begin
select * bulk collect into v_t from MY_TABLE where rownum=1 ;
--- then for printing it --- /!\ depends of the data in your table:
FOR i in 1..v_t.count
loop
dbms_output.put_line(to_char(v_t(i).MY_COLUMN));
end loop;
end;
/
;您需要包括括号:playpiano
。