𝐏𝐑𝐎𝐆𝐑𝐀𝐌𝐌𝐈𝐍𝐆/𝐂
쉽게 풀어쓴 C언어 EXPRESS Programming 4장 6번
도순씨
2020. 9. 10. 01:38
1
2
3
4
5
6
7
8
9
10
|
#include <stdio.h>
int main (void)
{
double b;
b = 3.32e-3 + 9.76e-8;
printf("%f", b);
return 0;
}
|
cs |