Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
425 关清声 11种树 C++ Compile Error 0 MS 0 KB 210 2022-08-19 11:32:30

Tests(0/0):


Code:

#include<iostream> #include<algorithm> using namespace std; int main(); { int n,k,sum=0; cin>>n>>k; while(n>=k) { n-=k; sum++; } if(n>1) { sum++; } cout<<sum<<endl; return 0; }


Run Info:

Main.cc:5:1: error: expected unqualified-id before '{' token
 {
 ^