求助 80分 本地可AC
查看原帖
求助 80分 本地可AC
896912
homoteam_ikun楼主2023/1/6 09:57

rt 佬来调调 感激不尽

#include<iostream>
using namespace std;
int main(){
	int x;
	cin>>x;
	if(x==0){
		cout<<"Today, I ate 0 apple.";
	return 0;
	}
	if(x==1){
		cout<<"Today, I ate 1 apple.";
	}
	cout<<"Today, I ate "<<x<<" apples.";
	return 0;
}
2023/1/6 09:57
加载中...