- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够给出尽可能多的价格,当我结束循环时,它将写入所有价格的总和,以便我稍后可以将总和转换为瑞典克朗货币。在分配中我应该能够添加新价格,只要它超过 0。
while (price < 0) {
printf("Give price (finish with <0) :\n");
scanf("%lf", &price );
if (price < 0) {
printf("Sum in foreign currency: %lf\n", sum);
}
}
这就是我的代码应该如何工作:
Your shopping assistant
1. Set exchange rate in SEK (current rate: 1.00)
2. Read prices in the foreign currency
3. End
Give your choice (1 - 3): 1
Give exchange rate: 9.71
1. Set exchange rate in SEK (current rate: 9.71)
2. Read prices in the foreign currency
3. End
Give your choice (1 - 3): 4
Not a valid choice!!
1. Set exchange rate in SEK (current rate: 9.71)
2. Read prices in the foreign currency
3. End
Give your choice (1 - 3): 2
Give price (finish with <0): 2.75
Give price (finish with <0): 3.50
Give price (finish with <0): -23
Sum in foreign currency: 6.25
Sum in SEK: 60.69
1. Set exchange rate in SEK (current rate: 9.71)
2. Read prices in the foreign currency
3. End
Give your choice (1 - 3): 3
End of program!
最佳答案
循环应在 price
非负数时执行,并且应在循环结束时进行检查。在循环开始时,价格还不知道。
price
仅当 scanf
返回 1 时才有效,因此您需要检查这一点。
#include <assert.h>
#include <stdio.h>
double getPriceSum() {
double sum = 0.0;
double price;
do {
printf("Give price (finish with <0) :\n");
int num = scanf("%lf", &price);
if (num != 1)
price = 0.0; // set a "safe" value for price
else if (price > 0.0) {
assert(num == 1); // asserts are like comments that the compiler understands:)
sum += price;
}
} while (price >= 0);
assert(price < 0); // otherwise the loop wouldn't terminate
return sum;
}
int main() {
// ...
double sum = getPriceSum();
printf("Sum in foreign currency: %lf\n", sum);
}
在循环内部声明 price
变量会更好,因为外部不需要它,然后我们不需要设置其初始值的体操,这样循环就赢了不要无意中终止:
double getPriceSum() {
double sum = 0.0;
for (;;) { // repeat "forever" unless otherwise exited
double price;
printf("Give price (finish with <0) :\n");
int num = scanf("%lf", &price);
if (num == 1) {
if (price >= 0.0)
sum += price;
else
return sum;
}
}
}
请注意,带有 \n
的 printf
会将光标移动到另一行并将输出刷新到屏幕。您可能不希望光标移动(根据示例输出)。相反,删除 \n
并发出显式刷新:
printf("Give price (finish wih <0) : ");
fflush(stdout);
也可以不那么尴尬,接受一个单词而不是数字作为“退出”命令:
double getPriceSum() {
double sum = 0.0;
char *line = NULL;
size_t lineSize = 0;
for (;;) {
printf("Give price, or DONE to finish : ");
fflush(stdout);
int result = getline(&line, &lineSize, stdin);
if (result < 0)
break;
if (!line || !lineSize)
continue; // read again
if (strcmp(line, "DONE") == 0 || strcmp(line, "done") == 0)
break;
double price;
result = sscanf(line, "%lf", &price);
if (result == 1 && price > 0)
sum += price;
else
fprintf(stderr, " - Invalid price. Try again.\n");
}
return sum;
}
关于c - 我希望能够向自身添加变量,以便它们与我分配给它们的值相匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58303919/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!