编写一个程序,创建一个名为toes
的整数变量,设置它的值为10
。计算两次脚趾的数量和脚趾的平方数。打印所有三个值,识别它们。
#include <stdio.h>
int main(void)
{
int toes;
toes = 10;
printf("toes = %d/n", toes);
printf("Twice toes = %d/n", 2 * toes);
printf("toes squared = %d/n", toes * toes);
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266483.html