javaプログラム

関連タイピング
-
C使いならサクサク打てるはず!?
プレイ回数19万短文英字60秒 -
JAVAの練習用です。
プレイ回数1098長文120秒 -
『+』『-』『=』の練習2
プレイ回数713長文記号189打 -
c打
プレイ回数755123打 -
『,』、『.』、『;』、『/』の練習用です
プレイ回数2265長文記号389打 -
cを一回押すだけです。
プレイ回数2.4万短文1打 -
すごくかんたんなのでやってみてn
プレイ回数319連打90秒 -
Pythonプログラムを打ちまくる
プレイ回数5805英語長文60秒
問題文
(publicclasssample{)
public class Sample{
(publicstaticvoidm(string[]args){)
public static void m(String[] args){
(try{)
try{
(deletefortemporaryfiles(”app”);)
deleteForTemporaryFiles("App");
(}catch(ioexceptione){)
}catch(IOException e){
(e.printstacktrace();)
e.printStackTrace();
(})
}
(for(stringdir)throwsioexception{)
for(String dir) throws IOException{
(file[]file=newfile(dir).list();)
File[] file = new File(dir).list();
(if(files!=files.length>0){)
if(files != files.length > 0){
(for(filefile:files){)
for(File file : files){
(if(file.isdirectory()){)
if(file.isDirectory()){
(delete(file.getabsolutepath());)
delete(file.getAbsolutePath());
(}else{)
}else{
(if(file.getname().endswith(”.tmp”))})
if(file.getName().endsWith(".tmp"))}
(file.delete();)
file.delete();
(p363)
p363