17 lines
220 B
C
17 lines
220 B
C
//
|
|
// Created by xfj12 on 2025/3/25.
|
|
//
|
|
|
|
#ifndef INC_367_H
|
|
#define INC_367_H
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
#include <stdbool.h>
|
|
bool isPerfectSquare(int num);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // INC_367_H
|