📄 ex10_02.c
字号:
/* Exercise 10.2 Reading monetary amounts separated by commas and spaces. */
/*
You only need to ensure that the input format string specifies that '$',
spaces, and commas are ignored.
*/
#include <stdio.h>
void main()
{
double amounts[4] = {0.0};
double total = 0.0;
int i = 0;
printf("Enter the four amounts:\n");
for(i = 0 ; i<4 ; i++)
{
scanf("%*[ ,$]%lf", &amounts[i]);
total += amounts[i];
}
printf("The total of the input is: $%.2lf\n", total);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -