C语言中%d,%%d,%%%d的输出时间:2025-04-01 07:17:17int a=1; 1、printf(’’%d’’,a);//输出1 2、printf(’’%%d’’,a);//输出%d 3、printf(’’%%%d ‘’,a)//输出%1 C语言中,%也是转义符,%%相当于%。