通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下列程序的运行结果是( )。
public class Test{ public static void main(String[]args){ int percent=10; tripleValue(percent); System.out.println(percent); } public static void tripleValue(int x){ x=3*x; } }