fork download
  1. // Lab 8, Working with structs
  2. // Programmer : Maiar Khattab
  3. // Editor(s) used : Code Blocks 13.12
  4. // Compiler(s) used : Code Blocks 13.12
  5.  
  6. #include<iostream>
  7. using namespace std;
  8. int main()
  9. {
  10. int a,b;
  11. cout<<"enter two integers"<<endl;
  12. cin>>a>>b;
  13. cout<<"a+b"<<a+b<<endl;
  14. cout<<"a-b"<<a-b<<endl;
  15. cout<<"a/b"<<a/b<<endl;
  16. cout<<"a%b"<<a%b<<endl;
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5276KB
stdin
 
stdout
enter two integers
a+b855407278
a-b855341746
a/b26105
a%b18082