Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
petlje_z4.cpp
00001 #include <iostream> 00002 #include <cstring> 00003 using namespace std; 00004 00005 00006 int main (){ 00007 00008 int a, b = 0, i = 0; 00009 00010 do { 00011 cout << "Upisi broj izmedu 1 i 50"<< endl; 00012 cin >> a; 00013 } while (a<1 || a > 50); 00014 00015 while (i <= a){ 00016 b = b + i; 00017 if (b == 0){ 00018 i++; 00019 }else { 00020 cout << b << endl; 00021 i++; 00022 } 00023 00024 } 00025 00026 00027 00028 }
Generated on Thu Jul 14 2022 21:05:48 by
1.7.2