Guest User

Untitled

a guest
Jul 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int T;
  7. while( cin >> T )
  8. {
  9. for( int i = 1 ; i <= T ; i++ )
  10. {
  11. int a, b;
  12. cin >> a >> b;
  13.  
  14. int sum = 0;
  15. for( int j = a ; j <= b ; j++ )
  16. if( j % 2 )
  17. sum += j;
  18. cout << "Case " << i << ": " << sum << endl;
  19. }
  20. }
  21. return 0;
  22. }
Add Comment
Please, Sign In to add comment