WSQ03

1 min read

here is my code in c++ for #WSQ03 #TC1017 #funwithnumbers 

#include

using namespace std;

int main()

{

   int a, b, c;

   cout

   cin >> a >> b;

cin >> c2;

cin>> c3;

cin>> c4;

cin>> c5;

cin>> c6;

   c = a + b;

   c2= a – b;

   c3= a / b;

   c4= a * b;

   c5 =(int)a / b;

   int c6 = a % b;

   cout

   cout

   cout

   cout

   cout

   return 0;

}

CC BY 4.0 WSQ03 by carlos green is licensed under a Creative Commons Attribution 4.0 International License.

Comments are closed.