打印C语言中的非平方数

2023年 8月 27日 28.9k 0

程序描述

一个数的平方是该数乘以自身。

一个平方数或完全平方是一个整数,它是一个整数的平方;

完全平方数是整数的平方。

1, 4, 9, 16, 25, 36, 49, 64, 81, 100

登录后复制

这里是从1到100的所有完全平方数的平方根。

√1 = 1 since 12 = 1
√4 = 2 since 22 = 4
√9 = 3 since 32 = 9
√16 = 4 since 42 = 16
√25 = 5 since 52 = 25
√36 = 6 since 62 = 36
√49 = 7 since 72 = 49
√64 = 8 since 82 = 64
√81 = 9 since 92 = 81
√100 = 10 since 102 = 100

登录后复制

A non-perfect square is every number that is not the result of squaring an integer with itself.

The below numbers are non-perfect square numbers

2,3,5,6,7,8,10,11,12,13,14,15,17,18,19,20,21,22,23,24,26 etc…

登录后复制

算法

Check all numbers from 1 to the user specified number.
Check if it is perfect square or not.
If not a perfect square, print the Non Perfect Square Number.

登录后复制

Example

的中文翻译为:

示例

/* Program to print non square numbers */
#include
#include
int main() {
int number,i,x;
int times = 0;
clrscr();
printf("Print the Non Square Numbers till:");
scanf("%d", &number);
printf("The Non Squre Numbers are:");
printf("

");
for(i = 1;times

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论