fangshi
fangshi
全部文章
题解
归档
标签
去牛客网
登录
/
注册
fangshi的博客
全部文章
/ 题解
(共3篇)
题解 | #牛牛学取余#
输入两个数,输出两个数相除的余数。 #include<bits/stdc++.h> using namespace std; long long x,y; int main(){ cin>>x>>y; cout<<x%y<<endl;...
C++
模拟
2023-04-25
0
239
题解 | #牛牛学加法#
输入两个数,输出两个数的和。 #include<bits/stdc++.h>//头文件 using namespace std;//命名空间 long long x,y; //定义 int main(){//主函数 cin>>x>>y;//输入 cout<...
模拟
2023-04-25
0
194
题解 | #你好,牛客#
非常简单。 #include<bits/stdc++.h>//全头文件 using namespace std;//命名空间 int main(){//主函数 cout<<"hello nowcoder"<<endl;//输出 return 0; }
C++
模拟
2023-04-24
0
232