题解 | #成绩输入输出#
成绩输入输出
https://www.nowcoder.com/practice/eb49750ef0de47168c21761de086d97c
#include <cstdio>
#include <iostream>
using namespace std;
int main() {
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
printf("score1=%d,score2=%d,score3=%d",a,b,c);
}
// 64 位输出请用 printf("%lld")
查看16道真题和解析