c或c++等语言输出带双引号或单引号的字符串

c或c++等语言输出带双引号或单引号的字符串

  • 单引号可直接输出
  • 双引号需要加两个反斜杠+双引号 (\")*2即\"代表一个双引号
    助学示例:
    1.输出带双引号的字符串
#include 
using namespace std;

int main() {
    printf("\"软件\""); //其中\"代表一个双引号
	return 0;
}

2.输出带单引号的字符串

#include 
using namespace std;

int main() {
    printf("'软件'");
	return 0;
}

3.java输出带双引号的字符串

import java.io.*;
class test  
{
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println("\"软件\""); //其中 \" 代表一个双引号
	}
}

4.java输出带单引号的字符串

java
import java.io.*;
class test  
{
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println("'软件'"); //其中 \" 代表一个双引号
	}
}

5.JavaScript输出带单引号的字符串

doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档title>
<script>
	//1.声明了一个age的变量
	var age;
	//2.赋值 把值存入这个变量中
	age = 18;
	//3. 输出结果
	console.log(age);
	//4.变量的初始化
	var myname = "'城哥'";
	console.log(myname);
script>
head>

<body>
body>
html>

6.JavaScript输出带双引号的字符串

doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档title>
<script>
	//1.声明了一个age的变量
	var age;
	//2.赋值 把值存入这个变量中
	age = 18;
	//3. 输出结果
	console.log(age);
	//4.变量的初始化
	var myname = '"城哥"';
	console.log(myname);
script>
head>

<body>
body>
html>

你可能感兴趣的:(杂七杂八,c语言,c++,javascript)