chore: add metronome program

main
CrimsonTome 2023-02-05 23:28:41 +00:00 committed by Rowan Clark
commit e7cb70ef5f
No known key found for this signature in database
GPG Key ID: F620D51904044094
1 changed files with 9 additions and 0 deletions

9
metronome/main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main(){
double x;
cin >> x;
cout << x/4;
return 0;
}