菜鸟提问,为什么这样也能过
查看原帖
菜鸟提问,为什么这样也能过
1581932
taohuaqiuyu168楼主2024/12/24 20:51
#include <stdio.h>
#include <stdbool.h>
int main(){	
		int i;
		bool j;
		scanf("%d",&i);
		j=i;
		printf("%d",j);
		return 0;
		}
2024/12/24 20:51
加载中...