首页 > 你好,牛客
头像 张田懿
发表于 2020-12-08 10:31:37
很简单#include<bits/stdc++.h>using namespace std;int main(){ cout<<"hello nowcoder"; return 0;}
头像 金龙月轩寰语唐舞麟
发表于 2020-12-08 10:26:02
十分简单 以下是c++代码 #include<bits/stdc++.h> using namespace std; int main() { cout<<"hello nowcoder"<<endl; return 0; }
头像 刘昊2020
发表于 2019-10-05 19:57:41
//楼上的太麻烦了吧~~#include<stdio.h>int main(){ printf("hello nowcoder\n");}
头像 牛客517072235号
发表于 2020-04-18 16:52:36
#include<iostream> using namespace std; int main() { cout<<"hello nowcoder"<<endl; return 0; } error: 'cout' was not declar 展开全文
头像 JessonandJenny
发表于 2020-09-25 17:44:52
include<bits/stdc++.h> using namespace std; int main(){ cout << "hello nowcoder"; return 0;}
头像 雒凯璇
发表于 2023-10-19 17:28:51
本题很简单,注意审题即可,单词不要拼写错误 #include<iostream> using namespace std; int main(){ cout<<"hello nowcoder"<<endl; return 0; }
头像 追求只为你
发表于 2019-09-13 09:36:38
直接输出即可 #include <bits/stdc++.h> using namespace std; int main() { cout << "hello nowcoder" << endl; return 0; }
头像 lihaoyu68
发表于 2025-01-10 20:45:47
注:本题解只提供C/C++题解(C讲解) 题目链接 C/C++中有一个封装函数 printf(),作用是输出其中的内容。 printf() 输出字符串格式为: c++ c printf(字符串); printf(字符串); printf() 调用头文件: c++ c 展开全文
头像 陈柯蒙
发表于 2020-06-06 20:57:20
秀的一批 include include using namespace std;char Nowcoder[20]={'h','e','l','l','o',' ','n','o','w','c','o','d','e','r'};int main(){ const int n=20; 展开全文
头像 江杰
发表于 2019-11-16 12:10:45
include<bits/stdc++.h> using namespace std;int main(){ cout<<"hello nowcoder"<<endl;或者printf("hello nowcoder\n"); return 0;}

等你来战

查看全部