首页 > 试题广场 >

发布信息

[编程题]发布信息
  • 热度指数:26590 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解
你的手机丢了,在屏幕上输出信息告诉大家。

输入描述:


输出描述:
I lost my cellphone!
头像 牛客题解官
发表于 2020-06-04 16:54:28
精华题解 分析: hello world级别,输出即可 题解: #include <bits/stdc++.h> using namespace std; int main() { printf("I lost my cellph 展开全文
头像 计算机红利
发表于 2021-10-12 13:28:55
#include<stdio.h> int main() { puts("I lost my cellphone!"); return 0; }
头像 JessonandJenny
发表于 2020-12-06 17:14:51
include <bits/stdc++.h> using namespace std; int main() { cout << "I lost my cellphone!" << end; return 0;}
头像 诗奕
发表于 2024-01-05 18:09:38
#include <stdio.h> int main() { printf("I lost my cellphone!"); return 0; }
头像 牛客621211578号
发表于 2024-06-02 00:08:32
我是天才
头像 牛客920570402号
发表于 2022-07-15 18:07:14
#include<stdio.h> int main() {     printf("I lost my cellphone!\n");     return 0; }
头像 StarlightSparkle
发表于 2023-07-20 15:36:28
#include <stdio.h> int main() { printf("I lost my cellphone!\n"); return 0; }
头像 牛客748412285号
发表于 2023-02-15 17:57:26
#include <stdio.h> int main() { printf("I lost my cellphone!"); return 0; }
头像 九离十
发表于 2024-09-25 22:48:27
#include <iostream> using namespace std; int main() { cout<<"I lost my cellphone!"<<endl; return 0; } // 64 位输出请用 展开全文
头像 顽皮夜
发表于 2023-02-08 17:54:15
#include <stdio.h> int main() { printf("I lost my cellphone!\n"); return 0; }
头像 牛客462615885号
发表于 2021-10-04 22:33:29
#include<iostream> using namespace std; int main() { std::cout << "I lost my cellphone!" << endl; return 0; }

问题信息

上传者:牛客309119号
难度:
56条回答 2137浏览

热门推荐

通过挑战的用户

查看代码
发布信息