Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int ile;
- cin >> ile;
- for(int k = 0; k < ile; k++){
- float a;
- float b;
- cin >> a >> b;
- float halfA = a / 2;
- cout << (int)((90 - b) / halfA)<< endl;
- }
- return 0;
- }
Add Comment
Please, Sign In to add comment