使用int类型的变量

printf()中的转换说明符始终以字符开头。 如果要输出字符,请使用转义序列%%

#include <stdio.h>

int main(void)
{
  int salary;                               // Declare a variable called salary
  salary = 10000;                           // Store 10000 in salary
  printf("My salary is %d./n", salary);
  printf("My salary is %%d./n", salary);
  return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266600.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论