鱼C论坛

 找回密码
 立即注册
查看: 2290|回复: 2

初学者求别的写法

[复制链接]
发表于 2014-7-14 13:11:32 | 显示全部楼层 |阅读模式
1鱼币
这个有没有别的写法
#include<stdio.h>
#include <math.h>
void main()
{
        int x;
        x=0;
loop:if(sqrt(x+100)==(int)sqrt(x+100)&&sqrt(x+168)==(int)sqrt(x+168))
        {
                printf("%d\n",x);
        }
        else
        {
                x++;
                goto loop;
        }
        
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-7-14 13:11:33 | 显示全部楼层
#include <stdio.h>
#include <math.h>

void main(){
        int x = 0;
        while(sqrt(x + 100) != (int)sqrt(x + 100) || sqrt(x + 168) != (int)sqrt(x + 168)){
                x++;
        }
        printf("%d\n",x);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-7-14 14:00:03 | 显示全部楼层
为什么要用goto啊,用while不就好了吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 16:36

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表