首页 > 试题广场 >

完美成绩

[编程题]完美成绩
  • 热度指数:15467 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解

KiKi想知道他的考试成绩是否完美,请帮他判断。从键盘输入一个整数表示的成绩,编程判断成绩是否在90~100之间,如果是则输出“Perfect”。


输入描述:
多组输入,每行输入包括一个整数表示的成绩(90~100)。


输出描述:
针对每行输入,输出“Perfect”。
示例1

输入

98

输出

Perfect

JavaScript


while( a = readline()){
    if (90 <= parseInt(a)){
        console.log("Perfect");
}
}


编辑于 2020-06-19 18:19:34 回复(0)
以后每一科,都要perfect
发表于 2021-07-07 16:27:01 回复(0)
#include<stdio.h>
int main() {
    int mark;
    while(scanf("%d",&mark)!=EOF)
        printf("%s\n",mark>=90&&mark<=100?"Perfect":"");
}

发表于 2021-09-01 01:13:57 回复(1)
#include<stdio.h>
int main()
{
    int a = 0;
    scanf("%d",&a);
    if(a>=90&&a<=100)
    {
        printf("Perfect\n");
    }
    return 0;
}

发表于 2021-06-20 23:36:41 回复(0)
编辑于 2024-03-19 15:08:27 回复(0)
#include <stdio.h>

int main() 
{
    int score = 0;

    scanf("%d", &score);

    if(score <= 100 && score >= 90)
    {
        printf("Perfect\n");
    }
    
    return 0;
}

发表于 2024-03-18 21:47:53 回复(0)
#include<stdio.h>
int main()
{
    int a = 0;
    scanf("%d", &a);
    if (a >= 90 && a <= 100) {
        printf("Perfect");
    }
    return 0;
}
发表于 2023-10-23 13:21:05 回复(0)
#include <stdio.h>

int main() {
    int score = 0;
    while (scanf("%d", &score) != EOF) {
        printf("%s", (score >= 90 && score <= 100) ? "Perfect" : "");
    }
    return 0;
}

发表于 2023-03-09 10:16:37 回复(0)
#include <stdio.h>

int main() 
{
    int score = 0;
    while(scanf("%d",&score)!=EOF)
    {
        if(score>=90&&score<=100)
        {
            printf("Perfect\n");
        }
    }
    return 0;
}

发表于 2023-02-02 12:41:44 回复(0)
import java.util.Scanner; public class Ceshi { public static void main(String[] args){ //如果键盘输入数字是90--100输出完美 Scanner scanner=new Scanner(System.in); double n=scanner.nextInt(); if(n>=90&&n<=100){ System.out.println("prefect"); } else { System.out.println("no prefect60"); } } }
发表于 2023-01-04 20:44:40 回复(0)
#include<stdio.h>
int main()
{
    int a=0;
    while(scanf("%d",&a)!=EOF)
    {
        if(a>=90&&a<=100)
            printf("Perfect");
        
        
    }
    
    return 0;
}

发表于 2022-05-12 17:05:07 回复(0)
import java.util.Scanner;

/**
 * @Title:  完美成绩
 * @Remark: KiKi想知道他的考试成绩是否完美,请帮他判断。从键盘输入一个整数表示的成绩,编程判断成绩是否在90~100之间,如果是则输出“Perfect”。
 * @Author: ijunfu
 * @Version: 1.0.0
 * @Date: 2022-03-19
 */
public class Main {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);

        while(in.hasNextInt()) {
            int score = in.nextInt();

            if(score >= 90 && score <= 100 ) System.out.println("Perfect");
        }
    }
}

发表于 2022-03-19 12:09:04 回复(0)
#include<stdio.h>
#define PERFECT "Perfect"
int main(void){
    int score;
    
    while(scanf("%d", &score) != EOF){
        getchar();
        
        if(score >= 0 && score <= 100){
            if(score >= 90 && score <= 100)
                printf(PERFECT);
        }
        else
            printf("分数输入错误!!");
    }
    
    return 0;
}
稍微思考下就会想的比较全面,基本上算是语法题,if-else
发表于 2022-01-30 12:49:00 回复(0)
请问有人知道"~"在C语言中是什么意思吗?小白一个🤨多谢啦
发表于 2022-01-18 12:05:51 回复(0)
while 1:
    try:
        score = int(input())
        if score >=90 and score <=100:
            print("Perfect")
        else:
            continue
    except EOFError:
        break

发表于 2022-01-16 12:02:03 回复(0)
# include<bits/stdc++.h>
using namespace std;
int main()
{
    int score;
    while(cin >> score)
    {
        if(score >=90 && score <=100)
            cout << "Perfect\n";
    }
    return 0;
}

发表于 2021-12-17 20:17:52 回复(0)
#include<stdio.h>
int main()
{
    int grade;
    while (scanf("%d", &grade) != EOF)
    {
        if (grade >= 90 && grade <= 100)
        {
            printf("Perfect\n");
        }
    }
    return 0;
}

发表于 2021-12-17 14:59:28 回复(0)
a=input()
if (int(a)<=100) and (int(a)>=90):
    print("Perfect")
发表于 2021-11-30 13:12:07 回复(0)
#include <stdio.h>

int main(){
    int res;
    while(~scanf("%d",&res)){
        printf("%s",(res>=90 && res<=100) ? "Perfect" : "");
    }
    return 0;
}
发表于 2021-11-30 08:39:29 回复(0)
def grade(n): If n&gt;=90 and n&lt;=100: Return “perfect” Else: Return 0
发表于 2021-11-24 13:13:27 回复(0)