Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/feed-rss2.php on line 8
‘#KENROCKS’ Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Thu, 05 Feb 2015 15:45:53 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ FUN WITH NUMBERS https://kenscourses.com/tc101winter2015/2015/fun-with-numbers-11/ Thu, 05 Feb 2015 15:45:53 +0000 http://diegops.withknown.com/2015/fun-with-numbers Continue reading ]]>

  
I made this just to have fun with numbers, + , – , * , / , %
Diego Plascencia Sanabria.

<iostream>

using namespace std;

int x=5;

int y=3;

int s, r, p,d,otro;

int main (void){

 

s= x+y;

cout<<“la suma de los valores es =  “<< s << endl;

r= x-y;

cout<<“la resta de los valores es =  “<< r << endl;

p= x*y;

cout<<“el producto de los valores es =  “<< p << endl;

d= x/y;

cout<<“la division de los valores es =  “<< d << endl;

otro= x%y;

cout<<“el % de los valores es =  “<< otro << endl;

 

}

]]>
https://creativecommons.org/licenses/by/4.0/