Go Back   CodingForums.com > :: Computing & Sciences > Computer Programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-21-2012, 07:15 PM   PM User | #1
Benja303
New to the CF scene

 
Join Date: Nov 2012
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Benja303 is an unknown quantity at this point
Help with Multiples program code

I need to create a pseudocode to calculate the sum of the multiples of 4 and 7 between a certain range m and n which will be inputted by the user.

Here is what i tried so far

Begin
Display “Please enter the smaller number in your range”
Input m
Display “Please enter the larger number in your range”
Input n
Incrementor=1
DO
Multiples4=4*incrementor
Multiples7=7*incrementor
IF Multiple4 <=n AND >=m
Sum=Sum+Multiples4
Endif
IF Multiples7 <=n AND >=m
Sum=Sum+Multiples7
Endif
Incrementor=incrementor+1
WHILE Multiples4 and Multiples7 <=n


It's just a snipped but There are many problems with this as you can see. A friend of mine was suggesting divide by the number and then check to see if there is a remainder instead or something. I need some help. Please suggest a method
Benja303 is offline   Reply With Quote
Old 12-15-2012, 04:40 AM   PM User | #2
JefferyJamison
New Coder

 
Join Date: Sep 2012
Location: USA
Posts: 13
Thanks: 0
Thanked 2 Times in 2 Posts
JefferyJamison is an unknown quantity at this point
Hi ! I gave one example may be it will help you.

//Find the sum of all the multiples of 4 or 7 below 1000.
#include<stdio.h>
#include<conio.h>
void main ()
{
int a,b,i,iSum=0;
clrscr();
for (i=1;i<1000;i++)
{
a = i%4;
b = i%7;
if(a==0||b==0)
{
iSum += i;
}


}
printf("\nThe sum of all the multiples of 4 or 7 below 1000: %d\n", iSum);
getch();

}
JefferyJamison is offline   Reply With Quote
Reply

Bookmarks

Tags
assit, code, multiple

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:39 AM.


Advertisement
Log in to turn off these ads.