Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- using namespace std;
- int main()
- {
- bool t = 1;
- double y = 0;
- int x=5;
- for(int i = 256; i > 1; i--){
- y = pow(x,2) + i / pow(x,2);
- }
- cout << y;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement