answersLogoWhite

0


Best Answer

6+7

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which double fact can help you find the sum 4 3?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What multiplication fact could help you find 27 divided by 3?

9


How do you find the permiter that has two numbers?

If you have the length and the width, add them together and double that sum.


How do you find the perimiter of a parallagram?

Add the lengths of any two adjacent sides, and double the sum.


Java-find average using array?

public static final double getAverage(final int[] ns) { if (ns.length == 0) { return 0.0; } int sum = 0; for (int n : ns) { sum += n; } return ((double) sum) / ns.length; }


Write a program that read 10 numbers from the user and display their sum?

#include<stdio.h> void main() { int num, sum=0, i; printf("Enter ten numbers: \n"); for(i=0;i<10;i++) { scanf("%d",&num); sum += num; } printf("\n The sum of the numbers is %d",sum); getchar(); }


Shell program to find the sum of cube of individual digits of a number?

Shell problems are programs that can be run to find out information about numbers. The problem can help find an even or odd number, or what the sum of a cube is.


How do you convert a single sigma sum to a double sigma sum?

Multiply sum by 2.


An isosceles triangle has two angles that each measure 50 degrees what is the measurs angles what is the measure of the third angle?

Use the fact that the sum of the three angles is 180 degrees.Use the fact that the sum of the three angles is 180 degrees.Use the fact that the sum of the three angles is 180 degrees.Use the fact that the sum of the three angles is 180 degrees.


Program to find the sum of harmonic series?

Let's assume that you want the sum of the general harmonic series: sum(n=0,inf): 1/(an+b) Since we know that the harmonic series will converge to infinity, we'll also assume that you want the sum from 0 to n. double genHarmonic(const double n, const double a, const double b) { double sum = 0.0; // perform calculations int k; for(k = 0; k <= n; ++k) { sum += 1.0 / (a * k + b); } return sum; }


Double the sum of a number and 5 is the same as fourteen more than triple the same number. Find the number.?

-4


What is double the sum of 1?

TWO


How do you sum up numbers from 1 to n?

import java.util.Scanner;public class average {static int i=0;static double sum = 0;static double average = 0;public static double calcSum(double sum){double count;Scanner input = new Scanner(System.in);while(i < 5){count = input.nextDouble();sum = sum + count;i++;}return sum;}public static double calcAverage(double average){double sum = calcSum(sum);average = calcSum(sum) / 5;return average;}public static void main(String[] args) {System.out.println("Please enter 5 numbers.");System.out.println("Sum is: "+calcSum(sum));System.out.println("Average is: "+calcAverage(average));}}