我自学c语言,有些问题我不懂,望大家指教!
假设一个程序的开始处有如下的声明:int imate = 2;
long shot = 53456;
char grade = ‘A’;
float log = 2.71828;
printf(“The odds against the % were % to 1.\n”, imate, shot);
printf(“A score of % is not an % grade.\n”, log, grade);
在printf()语句中应填上哪些合适的类型说明符,才能使程序正常运行。
谢谢帮忙!