Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93729 唐安轩 13求n加到m的和 C++ Compile Error 0 MS 0 KB 162 2024-10-19 10:45:58

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int n,m,b=0; cin>>n>>m; for(n<=m;n++){ b=b+n; } cout<<b; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:6:10: warning: statement has no effect [-Wunused-value]
     for(n<=m;n++){
          ^
Main.cc:6:17: error: expected ';' before ')' token
     for(n<=m;n++){
                 ^