Pages

Showing posts with label addition. Show all posts
Showing posts with label addition. Show all posts

Tuesday, March 3, 2015

Incorporate Addition with Sight Words With These Fun Smartboard Promethean Board Games

I always have students in my class who LOVE math - they will sit there counting in their spare time and pick up on new math concepts without even blinking.  Then... its time to work on our sight words and they automatically arent interested... they dont even want to put in the effort!  (Does anyone else have these types of students or is it just me!?)

Well... I figured it out:  make them think theyre doing math when theyre really doing ELA!  My mathematically inclined students LOVE these games... and dont even realize theyre practicing their sight words in the process of doing addition!

I decided to bridge off of the concept of Scrabble to have students add up the value of words.

I made a few games for the Dolch Sight Words:

Word Value Game for Dolch Pre-Primer Words - Smartboard or Promethean Board!           Word Value Game for Dolch Primer Words - Smartboard or Promethean Board!


Word Value Game for Dolch 1st Grade Words - Smartboard or Promethean Board!           Word Value Game for Dolch 2nd Grade Words - Smartboard or Promethean Board!

Word Value Game for Dolch 3rd Grade Words - Smartboard or Promethean Board!

I also made a few games for the Fry Words:

Word Value Game for Frys 1st 100 Words - Smartboard or Promethean Board!           Word Value Game for Frys 2nd 100 Words - Smartboard or Promethean Board!


Word Value Game for Frys 3rd 100 Words - Smartboard or Promethean Board!           Word Value Game for Frys 4th 100 Words - Smartboard or Promethean Board!

Be the first person to comment on this blog post and Ill send you all of the games for free!  Dont forget to leave your email address!

Read more »

Monday, March 2, 2015

Addition Subtraction Key Word Posters June Problem of the Day

In class lately, weve been working on the key words that tell us to add or subtract when we hear a word problem.  I made some cute posters for these and figured Id share them in both color and black/white.  Each pair of posters is $1... and obviously much higher quality than the preview image below!  Click each of the pictures to check them out!




On another note, how is it June already?  I know Im a bit late on this one... but here is the Problem of the Day for June/July! If you want to read about the routine, head on over here.  Otherwise, the routine and everything you need to start it is included in the free TPT item!  Click either picture to download!






Thanks for stopping by!  I hope you enjoy the new items!  Im linking up with Manic Monday again... be sure to head there for other great free items!


Classroom Freebies Manic Monday
Read more »

Wednesday, February 18, 2015

C Program to do Addition subtraction and multiplication of two numbers using function

C++ Program to do Addition,subtraction and multiplication of two numbers using function

#include<iostream.h>
#include<conio.h>

int res;
void main()
{
clrscr();
int sum(int,int);
int sub(int,int);
int mul(int,int);
int a,b,m,su,s;
cout<<"Enter two numbers:";
cin>>a>>b;

s=sum(a,b);
su=sub(a,b);
m=mul(a,b);
cout<<"Sum:"<<s<<"
Subtraction:"<<su<<"
Multiplication:"<<m;

getch();
}

sum(int a,int b)
{
res=a+b;
return(res);
}

sub(int a,int b)
{
res=a-b;
return(res);
}

mul(int a,int b)
{
res=a*b;
return(res);
}
Read more »