-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9db2a6e
commit 5a7d3a6
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#welcome screen | ||
print('Hi, this program will convert your osu!mania scroll speed to etterna scroll speed') | ||
|
||
#ask for your data | ||
osu_mania_sp = int(input('\nPlease input your osu!mania scroll speed: ')) | ||
etterna_recep = int(input('\nPlease input your Etterna Receptor Size: ')) | ||
|
||
#calculating and printing the results | ||
CMod = osu_mania_sp * 3200 / etterna_recep | ||
print('Your Etterna CMod is', CMod) | ||
|
||
next_calculation = input ('Type "Close" and Enter to Close the Program: ') |