Submission #1438191


Source Code Expand

#include<stdio.h>

int main(void) {
	char X;
	scanf("%s",&X);
	
	if(X=='A'){
		printf("1\n");
	}
	else if(X=='B'){
		printf("2\n");
	}
	else if(X=='C'){
		printf("3\n");
	}
	else if(X=='D'){
		printf("4\n");
	}
	else if(X=='E'){
		printf("5\n");
	}

	return 0;
}

Submission Info

Submission Time
Task A - A
User syoshizuka
Language C (GCC 5.4.1)
Score 100
Code Size 285 Byte
Status AC
Exec Time 0 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:5:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%s",&X);
  ^

Judge Result

Set Name all
Score / Max Score 100 / 100
Status
AC × 5
Set Name Test Cases
all A.txt, B.txt, C.txt, D.txt, E.txt
Case Name Status Exec Time Memory
A.txt AC 0 ms 128 KB
B.txt AC 0 ms 128 KB
C.txt AC 0 ms 128 KB
D.txt AC 0 ms 128 KB
E.txt AC 0 ms 128 KB