题解 | #成绩输入输出#
成绩输入输出
https://www.nowcoder.com/practice/eb49750ef0de47168c21761de086d97c
#include<stdio.h> int main() { //初始化变量 int a, b, c; //输入成绩 scanf("%d %d %d", &a, &b, &c); //输出成绩 printf("score1=%d,score2=%d,score3=%d",a,b,c); return 0; }
成绩输入输出
https://www.nowcoder.com/practice/eb49750ef0de47168c21761de086d97c
#include<stdio.h> int main() { //初始化变量 int a, b, c; //输入成绩 scanf("%d %d %d", &a, &b, &c); //输出成绩 printf("score1=%d,score2=%d,score3=%d",a,b,c); return 0; }
相关推荐