Learning by doing: Reading books and trying to understand the (code) examples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
284 B

  1. #include <stdio.h>
  2. #define MOL_MASS 3.0e-23
  3. #define WATER_QUART_GRAM 950.0
  4. int main (void) {
  5. float quarts;
  6. printf("Enter a amount of water, in quarts: ");
  7. scanf("%f", &quarts);
  8. printf("Number of molecules: %.2e\n", quarts * WATER_QUART_GRAM / MOL_MASS);
  9. return 0;
  10. }