以下c语言实现消费者积分功能代码实现的需求是:从用户处获取一个产品价格,根据不同的价格计算用户可以获得的积分数量,并将结果输出到屏幕上。如果产品价格大于或等于100元,则每10元可以获得1个积分;如果产品价格小于100元,则每20元可以获得1个积分。
以下是一个简单的C语言实现消费者积分功能的代码:
#include <stdio.h> int main() { int points, price; printf("Please enter the price of the product: "); scanf("%d", &price); if (price >= 100) { points = price / 10; } else { points = price / 20; } printf("You have earned %d points", points); return 0; }
用户需要输入一个产品的价格,程序会根据不同的价格计算用户可以获得的积分数量,并输出结果。如果产品价格大于或等于100元,则每10元可以获得1个积分;如果产品价格小于100元,则每20元可以获得1个积分。
评论