Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/Map-range/Vala/map-range.vala
Normal file
9
Task/Map-range/Vala/map-range.vala
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
double map_range(double s, int a1, int a2, int b1, int b2) {
|
||||
return b1+(s-a1)*(b2-b1)/(a2-a1);
|
||||
}
|
||||
|
||||
void main() {
|
||||
for (int s = 0; s < 11; s++){
|
||||
print("%2d maps to %5.2f\n", s, map_range(s, 0, 10, -1, 0));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue