Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- float mass,mols;
- printf("Entre com o valor da amostra de carbono : \n"); scanf("%f",&mass);
- mols = mass/12;
- printf("A amostra contem %f mols!\n",mols);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment