Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <iomanip>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int a,b, suma;
- int sz;
- cout << "Oblicznie sumy liczb" << endl;
- cout<<endl;
- cout << "podaj a i b" << endl;
- cin>>a>>b;
- cout << "podaj szerokosc pol: " << endl;
- cin>>sz;
- system("cls");
- suma=a+b;
- cout<<"system dziesietny:"<<endl;
- cout << "Oblicznie sumy liczb" << endl;
- cout << "a= "<<setfill(' ')<<setw(sz)<<a<<endl;
- cout <<"b= "<<setfill(' ')<<setw(sz)<<b<<endl;
- cout <<setfill('-')<<setw(sz+4)<<" "<<endl;
- cout<<"s= " <<setfill(' ')<<setw(sz)<<suma<<endl;
- cout<<endl<<endl;
- cout<<"system heksadecymalny: "<<endl;
- cout << "Oblicznie sumy liczb" << endl;
- cout << "a= "<<hex<<setfill(' ')<<setw(sz)<<a<<endl;
- cout <<"b= "<<hex<<setfill(' ')<<setw(sz)<<b<<endl;
- cout <<setfill('-')<<setw(sz+4)<<" "<<endl;
- cout<<"s= " <<hex<<setfill(' ')<<setw(sz)<<suma<<endl;
- cout<<endl<<endl;
- cout<<"system oktalny:"<<endl;
- cout << "Oblicznie sumy liczb" << endl;
- cout << "a= "<<oct<<setfill(' ')<<setw(sz)<<a<<endl;
- cout <<"b= "<<oct<<setfill(' ')<<setw(sz)<<b<<endl;
- cout <<setfill('-')<<setw(sz+4)<<" "<<endl;
- cout<<"s= " <<oct<<setfill(' ')<<setw(sz)<<suma<<endl;
- cout<<endl<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement