Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int metri;
- cin >> metri;
- metri *= 100;
- int pozicija = 0;
- int cekor = 1;
- int vkupno = 0;
- while(pozicija < metri) {
- if(cekor <= 2) {
- }
- else if(cekor >= 3 and cekor <= 5) {
- pozicija += 50;
- }
- else if(cekor >= 6 and cekor <= 7) {
- pozicija -= 25;
- }
- cekor += 1;
- if(cekor > 7) {
- cekor = 1;
- }
- vkupno += 1;
- }
- cout << vkupno << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement