Submission #54949
ソースコード
ステータス
項目 |
データ |
問題 |
0733 - プログラミング入門:累積和 |
ユーザー名 |
ei1913
|
投稿日時 |
2019-09-17 17:20:35 |
言語 |
C++ |
状態 |
Compile Error |
得点 |
0
|
ソースコード長 |
543 Byte |
最大実行時間 |
-
|
最大メモリ使用量 |
|
コンパイルメッセージ
./Main.cpp:1:1: error: ‘include’ does not name a type
include<bits/stdc++.h>//累積和 区間の和
^~~~~~~
./Main.cpp: In function ‘int main()’:
./Main.cpp:10:1: error: ‘cin’ was not declared in this scope
cin.tie(NULL);
^~~
./Main.cpp:10:1: note: suggested alternative: ‘main’
cin.tie(NULL);
^~~
main
./Main.cpp:10:9: error: ‘NULL’ was not declared in this scope
cin.tie(NULL);
^~~~
./Main.cpp:10:9: note: ‘NULL’ is defined in header ‘<cstddef>’; did you forget to ‘#include <cstddef>’?
./Main.cpp:1:1:
+#include <cstddef>
include<bits/stdc++.h>//累積和 区間の和
./Main.cpp:10:9:
cin.tie(NULL);
^~~~
./Main.cpp:11:1: error: ‘ios’ has not been declared
ios::sync_with_stdio(false);
^~~
./Main.cpp:18:24: error: ‘cout’ was not declared in this scope
for(int i=0;i<n;i++) cout<<sum[i]<<" ";//累積 出力
^~~~
./Main.cpp:19:3: error: ‘cout’ was not declared in this scope
cout<<sum[n]<<'\n';
^~~~
セット
テストケース