0分 到底哪里错了啊
查看原帖
0分 到底哪里错了啊
859372
Wsm4321楼主2023/1/7 20:39
#include<iostream>
using namespace std;
int main(){
	int x;
	cin>>x;
	if(x==1){
		printf("Today,I ate %d apple.\n",x);
		return 0;
	}else if(x>1){
		printf("Today,I ate %d apples.\n",x);
		return 0;
	}
	else if(x==0){
		printf("Today,I ate %d apple.\n",x);
		return 0;
	}
}
2023/1/7 20:39
加载中...