1 Star 0 Fork 0

92000 / C1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dalaohu 641 Bytes
一键复制 编辑 原始数据 按行查看 历史
92000 提交于 2020-11-06 10:24 . 重命名 查错 为 dalaohu
#include <stdio.h>
int f(int x)
{
return x*x*x;
}
int main()
{
int x;
int y;
x = 3;
y = f(x);
x = 4;
y = f(x);
printf("ljf");
printf("xiena");
printf("ono");
printf("o\no");
//起点是0,终点是2,每次走一点,点0、点1、点2 共三个点。 //每次走2点,点0,2 共两个点。
//用变量i表示这些点, i=0开始,i<3结束,每次i是加1的。写成c语言
for(int i=0; i<3; i++)
{
printf("o");
}
printf("\n");
for(int j=0; j<3; j++)
{
printf("x");
}
printf("\n");
for(int j=1; j<=3; j++)
{
printf("n");
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ninety-two-thousand/c1.git
git@gitee.com:ninety-two-thousand/c1.git
ninety-two-thousand
c1
C1
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891