69,774
社区成员
发帖
与我相关
我的任务
分享
#include <stdio.h>
int main()
{
int price = 0;
printf("请输入你的余额(元)");
scanf_s("%d", &price);
int change = 100 - price;
printf("找您%d元/n", change);
return 0;
}
为什么我这输出不了用的是vs2022
#include <stdio.h>
int main() {
int price = 0;
printf("请输入商品的价格(元): ");
scanf("%d", &price); // 使用标准的 scanf 函数
if (price > 100) {
printf("输入的价格不能超过100元。\n");
} else {
int change = 100 - price;
printf("找您 %d 元\n", change);
}
return 0;
}