結果
問題 | No.3010 Print inside /bin |
ユーザー | Kmcode1 |
提出日時 | 2015-05-04 01:33:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 719 ms |
コンパイル使用メモリ | 95,156 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-07-05 18:43:22 |
合計ジャッジ時間 | 1,232 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:35:15: warning: ignoring return value of ‘int system(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 35 | system(ls); | ~~~~~~^~~~
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cctype> #include<cstdlib> #include<algorithm> #include<bitset> #include<vector> #include<list> #include<deque> #include<queue> #include<map> #include<set> #include<stack> #include<cmath> #include<sstream> #include<fstream> #include<iomanip> #include<ctime> #include<complex> #include<functional> #include<climits> #include<cassert> #include<iterator> #include<valarray> //#include<bits/stdc++.h> using namespace std; #include <stdio.h> #include <stdlib.h> int main(void) { const char *ls = "dir /b c:bin"; system(ls); return EXIT_SUCCESS; }