回答編集履歴
1
fix typo
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
int header_line_num = 1;
|
20
20
|
|
21
|
-
FILE *fp = popen("(echo 順位 ID クラス 英語 数学 物理 合計点;cat data|awk '{print $1,$2,$3,$4,$5,$3+$4+$5}'|sort -r -k6|cat -n) |column -t", "r");
|
21
|
+
FILE *fp = popen("(echo 順位 ID クラス 英語 数学 物理 合計点;cat data.txt|awk '{print $1,$2,$3,$4,$5,$3+$4+$5}'|sort -r -k6|cat -n) |column -t", "r");
|
22
22
|
|
23
23
|
for ( int count=0 ; count < display_line_num+header_line_num ; count++ ){
|
24
24
|
|