Input 输入数据有多组,每组占一行,有三个字符组成,之间无空格。 Output 对于每组输入数据,输出一行,字符中间用一个空格分开。 Sample Input qwe asd zxc Sample Output e q w a d s c x z 代码 代码 #include<stdio.h>intmain(){chara[3],temp;while(scanf("%s",&a)!=EOF){if(a[0]>a[1]) {...
Problem Description 输入一个百分制的成绩t,将其转换成对应的等级,具体转换规则如下: 90~100为A; 80~89为B; 70~79为C; 60~69为D; 0~59为E; Input 输入数据有多组,每组占一行,由一个整数组成。 Output 对于每组输入数据,输出一行。如果输入数据不在0~100范围内,请输出一行:“Score is error!”。 Samp...
{ t = a; a = c; c = t; } if (b>c) { t = b; b = c; c = t; } printf("%c %c %c\n", a, b, c); } return 0; }*/ //2001 /*#include<stdio.h> #include<math.h> int main() { double x1, y1, x2, y2; double temp; while (~scanf("%lf%lf%lf%lf",&x1...