Created
December 29, 2009 20:37
-
-
Save zuigon/265579 to your computer and use it in GitHub Desktop.
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
#include <iostream> | |
using namespace std; | |
int br; | |
int manji(int br){ | |
for(int i=1; i<5; i++) | |
if((br-i)%5==0){ return (br-i); break; } | |
return 0; | |
} | |
int veci(int br){ | |
for(int i=1; i<5; i++) | |
if((br+i)%5==0){ return (br+i); break; } | |
return 0; | |
} | |
int main(int argc, char** argv){ | |
cin >> br; | |
if (br%5==0) cout <<br-5<<" "<<br+5<<endl; | |
else cout <<manji(br)<<" "<<veci(br)<<endl; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment