Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
111187 向睿杰 07苹果和虫子 C++ Compile Error 0 MS 0 KB 280 2025-03-01 10:19:58

Tests(0/0):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int n,x,y,cnt=0; cin>>n>>x>>y; cnt=n-y/x; if(y%x!=0){ cnt--; } if(cnt<=0){ cout<<0; } else{ cout<<cnt; } return 0; }


Run Info:

Main.cc:15:9: error: stray '\357' in program
         cout<