阅读如下程序。
(1) public class Try extends Thread{
(2) Public static void main (String args[]) {
(3) Try t=new Try();
(4) t.start();
(5) }
(6)
(7) Public void run(int j){
(8) int i=0;
(9) while(i<5) {
(10) System.out.println("祝你成功!");
(11) i++;
(12) }
(13) }
(14) }
该程序要求打印5行“祝你成功!”,必须改正程序中的某行代码,程序才能完成,选择正确的修改是______。