首页 > 发布信息
头像 牛客题解官
发表于 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; }