题解 | #成绩输入输出#
成绩输入输出
https://www.nowcoder.com/practice/eb49750ef0de47168c21761de086d97c
#include <stdio.h> int main() { int china=0,mat=0,english=0; scanf("%d %d %d",&china,&mat,&english); if(0 <= china <= 100 && 0 <= mat <= 100 && 0 <= english <= 100) { printf("score1=%d,score2=%d,score3=%d\n",china,mat,english); } return 0; }