学习c语言的过程

32 阅读1分钟

学习c语言,这是老师讲的草稿 #include <stdio.h> /* 2025.11.4 */ int main(){ int age = 0; printf("输入年龄:"); scanf("%d", &age);

int time = 0;
printf("输入时间:");
scanf("%d", &time);

int isVip = 0;
printf("输入是否会员(1:是, 0: 否)")
scanf("%d", &isVip);

printf("您的年龄是%d,看")

double price = 0;
// 基础票价
if(time < 12){
	price = 50;
} else {
    price = 80;
}
    
    

image.png