flow chart that computes the sum from 1 to 50
Wiki User
∙ 2009-07-14 10:34:44the question is, how much marijuana can one get for 50 dollars, answer is 50 dollars!!! because the "how much" is a monetary term... How much can also simply be a quantity term. And to answer the actual question, around here you can get 1/8 oz of good stuff or 1/2 oz or more of bad stuff for $50.
1. they not cool 2. they underage 3. they wanna kiss sum 1 4. they not cool 5. that last 1 was important enuf to list twice
its depends if you do it in 50 bags its 50000 lol :)
50% but if your fat 90%, skinny 20% and weird people 1%
Neither of the parents will be affected. There may not be any one with he disease in either of the parents families (or there might be). Since each parent is a carrier and has a 50/50 chance of passing one copy of the gene to each child 1/4 of the children will not get the gene, 1/2 will be carriers (1 copy) and 1/4 wil be affected (2 copies).
Yes.
public int sum(){ int sum = 0; for (int i = 0; i <= n; i++) sum+=i; return sum; }
The flowchart to read 10 positive integers K>10 Start A N K=1 Sum = 0 Sum = Sum + K2 B Is Y Print K > 100? sum K=k+1 End B A
1 =1
A Sample java method that can do this sum of all numbers between 1 to 50 public int sumNumbers(){ int retVal = 0; for(int i = 0; i <=50; i++){ retVal = retVal + i; } return retVal; }
public class Sum { public static void main(String[] args) { int sum=0; for(int i=1; i<=10; i++) sum+=i; System.out.println(sum); } }
The sum of the composite numbers between 1 and 50 is 936.
51
algorithim and flow chart of odd number 1 and 50
51
sum of n natural number is n(n+1)/2 first 50 number sum is 50(50+1)/2 = 1275
step 1 : n = 11, sum = 0 step 2 : then sum = sum + n2 step 3 : n = n + 2 step 4 : if n > 50, go to step 6 step 5 : loop to step 2 step 6 : print sum step 7 : end