⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex10_02.c

📁 [C语言入门经典(第4版)]整本书的源码!值得推荐!全部是最简单的源码!
💻 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 + -