实验2-1-5 将x的平方赋值给y(5 分)

实验2-1-5 将x的平方赋值给y(5 分)

假设x的值为3,计算x的平方并赋值给y,分别以“$y = x \times x$”和“$x \times x = y$”的形式输出x和y的值。

输入格式:

本题无输入

输出格式:

按照下列格式输出代入x=3的结果:

1
2
y = x * x
x * x = y
1
2
3
4
5
6
7
8
#include<stdio.h> 
int main(void)
{
int x,y; x=3; y=x*x;
printf("%d = %d * %d\n",y,x,x);
printf("%d * %d = %d\n",x,x,y);
return 0;
}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×