首页 > 试题广场 >

HTTP状态码

[编程题]HTTP状态码
  • 热度指数:29889 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解

KiKi访问网站,得到HTTP状态码,但他不知道什么含义,BoBo老师告诉他常见HTTP状态码:200(OK,请求已成功),202(Accepted,服务器已接受请求,但尚未处理。)400(Bad Request,请求参数有误),403(Forbidden,被禁止),404(Not Found,请求失败),500(Internal Server Error,服务器内部错误),502(Bad Gateway,错误网关)。


输入描述:
多组输入,一行,一个整数(100~600),表示HTTP状态码。


输出描述:
针对每组输入的HTTP状态,输出该状态码对应的含义,具体对应如下:
200-OK
202-Accepted
400-Bad Request
403-Forbidden
404-Not Found
500-Internal Server Error
502-Bad Gateway
示例1

输入

200

输出

OK
头像 .沫沫
发表于 2022-04-11 21:45:43
#include <stdio.h> int main() { int a; while(~scanf("%d",&a)) { getchar(); switch(a) { case 200:printf("OK\n");break; 展开全文
头像 zzfyupup
发表于 2022-05-25 20:49:21
">int main() { int a; while (scanf("%d", &a) != EOF) { switch (a) { case 200: printf("OK\n"); 展开全文
头像 我也要当学霸
发表于 2022-03-04 12:32:57
int main() { int a = 0; while ((scanf("%d", &a)) != EOF) { if (a == 200) { printf("OK\n"); } else if (a == 202) { printf("Acce 展开全文
头像 白伟仝
发表于 2021-01-17 13:19:24
不要用键盘手敲题给数据、字符串,免得空格数量不对: import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System. 展开全文
头像 叶花永不相见
发表于 2022-06-15 22:46:38
while 1: try: n = int(input()) if n == 200: print("OK") elif n == 202: print("Accepted") e 展开全文
头像 melon.
发表于 2023-02-09 13:23:07
dict = {200:'OK',202:'Accepted',400:'Bad Request',403:'Forbidden',404:'Not Found',500:'Internal Server Error',502:'Bad Gateway'} while 1: try: 展开全文
头像 诗奕
发表于 2024-01-10 10:59:11
#include <stdio.h> int main() { int n = 0; while (scanf("%d", &n) != EOF) { switch (n) { case 200: 展开全文
头像 东方不二
发表于 2024-10-09 21:50:28
#include <stdio.h> int main() { int num = 0; while (scanf("%d", &num) != EOF) { switch (num) { 展开全文
头像 万千少男的梦
发表于 2024-01-08 21:22:20
#include <stdio.h> int main() { int n = 0; while (scanf("%d", &n) != EOF) { int stl[7] = { 200,202,400,403,404 展开全文
头像 (Cheng)
发表于 2023-03-21 20:36:20
#include <cstdio> #include <algorithm> #include <map> #include <string> using namespace std; int main(){ map<int,string& 展开全文