#include <stdio.h> int main () { int age =39; if(age<20) { printf("您的年龄不足20岁,无法进行游戏!\n"); }else{ printf("您的年龄已经满足20岁,可以进行游戏!\n"); } return 0; }