Cコード10(ソート)
順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | ku | 3093 | E++ | 3.1 | 99.4% | 116.7 | 363 | 2 | 26 | 2024/11/16 |
関連タイピング
-
プレイ回数420英語長文220打
-
プレイ回数7469長文60秒
-
プレイ回数621歌詞1337打
-
プレイ回数639歌詞かな997打
-
プレイ回数2.9万短文英字60秒
-
プレイ回数874英語短文541打
-
プレイ回数2218英語長文318打
-
プレイ回数135113打
問題文
ふりがな非表示
ふりがな表示
(#include<stdio.h>)
#include<stdio.h>
(#define num 5)
#define NUM 5
(int main(void))
int main(void)
({)
{
(int test[num];)
int test[NUM];
(int tmp;)
int tmp;
(int i,j,s,t;)
int i,j,s,t;
(printf(”%dにんのてんすうをにゅうりょくしてください。¥n”,num);)
printf("%d人の点数を入力してください。\n",NUM);
(for(i=0;i<num;i++){)
for(i=0;i<NUM;i++){
(scanf(”%d”,&test[i]);)
scanf("%d",&test[i]);
(})
}
(for(s=0;s<num-1;s++){)
for(s=0;s<NUM-1;s++){
(for(t=s+1;t<num;t++){)
for(t=s+1;t<NUM;t++){
(if(test[t]>test[s];)
if(test[t]>test[s];
(tmp=test[t];)
tmp=test[t];
(test[t]=test[s];)
test[t]=test[s];
(test[s]=tmp;)
test[s]=tmp;
(})
}
(})
}
(})
}
など
(for(j=0;j<num;j++){)
for(j=0;j<NUM;j++){
(printf(”%dばんめのひとのてんすうは%dです。¥n”,j+1,)
printf("%d番目の人の点数は%dです。\n",j+1,
(test[j]);)
test[j]);
(})
}
(return 0;)
return 0;
(})
}