答案仅供参考,实际运行效果取决于运行平台和运行软件
1.编写一个C程序,它显示您的姓名和地址。
#include <iostream>
using namespace std;int main()
{cout << "My name is sakuraaa0908 C Primer Plus." << endl;cout &…
1,以下面的类声明为基础: // base class class Cd{ // represents a CD disk private: char performers[50] ; char label[20]; int selections;// number of selections double playtime; // playing time in minutes public: Cd(char * sl,char * s2,int n,double…
第一周 20190318-20190324 Algorithm:two Sum Two Sum [easy] Review:关于数据安全方面的文章 数据安全 Tip: 定时的问题 setTimeout and setInterval JavaScript Share:移除java List中所有null值 remove null from Java List
第2周 20190325-20190331 Algorithm:reverse int…
答案仅供参考,实际运行效果取决于运行平台和运行软件
1.编写一个C程序,如下述输出示例所示的那样请求并显示信息
What is your first name? Betty Sue What is your last name? Yewe What letter grade do you deserve? B What is your age? 22 Na…
分享文本信息
Intent intent new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT,"This is a text");
startActivity(Intent.createChooser(intent,"Share"));
分享单张图片
String path E…