À¯Ã¤¿ø
(Homepage) |
2008-04-13 12:35:51, Á¶È¸ : 433, Ãßõ : 83 |
> ¾î·Á¿î°Ô ÀÖ¾î¼...
>
> µµ¿ÍÁà...
>
>
> 1. Can we predict the difference in physical properties of the following polymers??
>
> [COC6H6COOCH2CH2O]n
> [COC6H6CONHCH2CH2NH]n
>
> 2. How does the compatibilizer affect the physical properties of imcompatible polymer blends
>
>
> ³ÊÀÇ µµ¿òÀ» °£ÀýÈ÷ ±â´Ù¸±²²...
>
µ¢´ä
#include <stdio.h>
#include <conio.h>
int main()
{
double a;
double b;
double c;
printf("10ÃÊ´ç ÅëÈÇÑ ¿ä±ÝÀ» ÀÔ·ÂÇϽÿÀ:");
scanf("%lf",&a);
printf("º»ÀÎÀÌ ÅëÈÇÑ ½Ã°£(ºÐ ´ÜÀ§)À» ÀÔ·ÂÇϽÿÀ:");
scanf("%lf",&b);
c= ((b*60)/10*a);
printf("Àüü ÅëÈ¿ä±Ý:%6.1lf",c);
return 0;
}
|
|
|